2011-06-18 02:24:48 +00:00
|
|
|
{% unless page.no_header %}
|
|
|
|
<header>
|
|
|
|
{% if index %}
|
2011-07-22 03:50:32 +00:00
|
|
|
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
|
2011-06-18 02:24:48 +00:00
|
|
|
{% else %}
|
|
|
|
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
|
|
|
|
{% endif %}
|
2011-07-18 20:59:59 +00:00
|
|
|
{% unless page.meta == false %}
|
2011-07-14 02:47:59 +00:00
|
|
|
<p class="meta">{% include post/date.html %}</p>
|
2011-07-14 02:23:19 +00:00
|
|
|
{% endunless %}
|
2011-06-18 02:24:48 +00:00
|
|
|
</header>
|
|
|
|
{% endunless %}
|
2011-06-07 20:12:46 +00:00
|
|
|
{% if index %}
|
2011-07-23 05:16:40 +00:00
|
|
|
<div class="entry-content">{{ content | excerpt }}</div>
|
2011-06-20 20:44:04 +00:00
|
|
|
<footer>
|
2011-07-22 03:50:32 +00:00
|
|
|
<a rel="full-article" href="{{ root_url }}{{ post.url }}">Read on →</a>
|
2011-06-20 20:44:04 +00:00
|
|
|
</footer>
|
2011-06-07 20:12:46 +00:00
|
|
|
{% else %}
|
2011-07-22 03:50:32 +00:00
|
|
|
<div class="entry-content">{{ content }}</div>
|
2011-06-07 20:12:46 +00:00
|
|
|
{% endif %}
|