aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_layouts/page.html
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-13 22:47:59 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-13 22:47:59 -0400
commit8d3e0b4a0eb35f32b0d3e1e0ba86b1c0defe6215 (patch)
tree89ce3c86049cc1f462242d425835d6d46421df2a /.themes/classic/source/_layouts/page.html
parent87f300b2bcf166474e5f7824fb3126a7992613ba (diff)
downloadmy_new_personal_website-8d3e0b4a0eb35f32b0d3e1e0ba86b1c0defe6215.tar.xz
my_new_personal_website-8d3e0b4a0eb35f32b0d3e1e0ba86b1c0defe6215.zip
Moved some post partials into source/_includes/post/ and updated include
links
Diffstat (limited to '.themes/classic/source/_layouts/page.html')
-rw-r--r--.themes/classic/source/_layouts/page.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html
index fe990dd7..fb51816f 100644
--- a/.themes/classic/source/_layouts/page.html
+++ b/.themes/classic/source/_layouts/page.html
@@ -6,18 +6,18 @@ layout: default
<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 %}
+ {% 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 %}
+ {% include post/date.html %}
</p>
{% endif %}
{% unless page.no_sharing %}
- {% include sharing.html %}
+ {% include post/sharing.html %}
{% endunless %}
</footer>
{% endunless %}
@@ -25,7 +25,7 @@ layout: default
{% if site.disqus_short_name and page.comments == true %}
<section>
<h1>Comments</h1>
- <div id="disqus_thread">{% include disqus_thread.html %}</div>
+ <div id="disqus_thread">{% include post/disqus_thread.html %}</div>
</section>
{% endif %}
</div>