blog/source/_layouts/page.html

20 lines
581 B
HTML
Raw Normal View History

2012-06-03 11:40:57 +00:00
---
layout: default
---
<article class="page">
{% if page.title %}
<h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
{% endif %}
2013-02-10 14:50:28 +00:00
<div class="entry-content">{{ content }}</div>
2012-06-03 11:40:57 +00:00
</article>
2013-02-10 14:50:28 +00:00
{% unless page.sharing == false %}
{% include post/sharing.html %}
2012-06-03 11:40:57 +00:00
{% endunless %}
{% if site.disqus_short_name and page.comments == true %}
<section id="comment">
<h1 class="title">Comments</h1>
<div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div>
</section>
2013-02-10 14:50:28 +00:00
{% endif %}