aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_layouts/page.html
blob: 07dd050d3c80d9f297a9ddabbe896d5c0cf5d1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
---

<div>
<article>
  <header>
    <h1 class="entry-title">{{ page.title | titlecase }}</h1>
    {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
  </header>
  {{ content | smart_quotes }}
  {% unless page.footer == false %}
    <footer>
      {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
      {% unless page.sharing == false %}
        {% include post/sharing.html %}
      {% endunless %}
    </footer>
  {% endunless %}
</article>
{% if site.disqus_short_name and page.comments == true %}
  <section>
    <h1>Comments</h1>
    <div id="disqus_thread">{% include post/disqus_thread.html %}</div>
  </section>
{% endif %}
</div>