android.moparisthebest.org/source/_layouts/page.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2011-07-19 22:28:48 -04:00
---
layout: default
---
<div>
<article>
2011-08-16 00:48:38 -04:00
{% if page.title %}
2011-07-19 22:28:48 -04:00
<header>
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
{% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
</header>
2011-08-16 00:48:38 -04:00
{% endif %}
2011-07-22 00:14:26 -04:00
{{ content }}
2011-07-19 22:28:48 -04:00
{% unless page.footer == false %}
<footer>
{% if page.date or page.author %}<p class="meta">
{% if page.author %}{% include post/author.html %}{% endif %}
{% include post/date.html %}
{% if page.categories %}{% include post/categories.html %}{% endif %}
</p>{% endif %}
2011-07-19 22:28:48 -04:00
{% 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>
2011-07-30 15:44:23 -04:00
{% unless page.sidebar == false %}
<aside role=sidebar>
{% if site.page_asides.size %}
{% include_array page_asides %}
{% else %}
{% include_array default_asides %}
{% endif %}
</aside>
{% endunless %}