www.moparscape.org/.themes/classic/source/_layouts/post.html
Brandon Mathis 5d1d04c52c 1. Made default layout more generic.
2. Added a page layout and improved html on post layout.
3. Improved flexibility of stylesheets for different layout types.
4. Collapsing sidebar now moves it to the bottom of the page and floats
content into columns.
5. Improved sharing settings, added Google plus one.
2011-07-12 19:40:57 -04:00

27 lines
553 B
HTML

---
layout: default
single: true
---
<div>
<article class="hentry">
{% include article.html %}
<footer>
<p class="meta">
{% include post_author.html %}
{% include post_date.html %}
{% include post_categories.html %}
</p>
{% unless page.no_sharing %}
{% include sharing.html %}
{% endunless %}
</footer>
</article>
{% if site.disqus_short_name and page.no_comments != true %}
<section>
<h1>Comments</h1>
<div id="disqus_thread">{% include disqus_thread.html %}</div>
</section>
{% endif %}
</div>