aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_layouts/page.html
diff options
context:
space:
mode:
Diffstat (limited to '.themes/classic/source/_layouts/page.html')
-rw-r--r--.themes/classic/source/_layouts/page.html30
1 files changed, 28 insertions, 2 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html
index 0c59c990..fe990dd7 100644
--- a/.themes/classic/source/_layouts/page.html
+++ b/.themes/classic/source/_layouts/page.html
@@ -1,5 +1,31 @@
---
-layout: post
+layout: default
---
-<!-- if you want a page layout -->
+<div>
+<article>
+ <header>
+ <h1 class="entry-title">{{ page.title | titlecase }}</h1>
+ {% unless page.no_meta or !index %}<p class="meta">{% include post_date.html %}</p>{% endunless %}
+ </header>
+ {{ content | smart_quotes }}
+ {% unless page.no_footer %}
+ <footer>
+ {% if page.date %}
+ <p class="meta">
+ {% include post_date.html %}
+ </p>
+ {% endif %}
+ {% unless page.no_sharing %}
+ {% include sharing.html %}
+ {% endunless %}
+ </footer>
+ {% endunless %}
+</article>
+{% if site.disqus_short_name and page.comments == true %}
+ <section>
+ <h1>Comments</h1>
+ <div id="disqus_thread">{% include disqus_thread.html %}</div>
+ </section>
+{% endif %}
+</div>