android.moparisthebest.org/source/_includes/article.html

21 lines
647 B
HTML
Raw Normal View History

2011-07-19 22:28:48 -04:00
{% unless page.no_header %}
<header>
{% if index %}
2011-07-22 00:14:26 -04:00
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
2011-07-19 22:28:48 -04:00
{% else %}
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
{% endif %}
{% unless page.meta == false %}
<p class="meta">{% include post/date.html %}</p>
{% endunless %}
</header>
{% endunless %}
{% if index %}
2011-07-23 09:54:15 -04:00
<div class="entry-content">{{ content | excerpt }}</div>
2011-07-19 22:28:48 -04:00
<footer>
2011-07-22 00:14:26 -04:00
<a rel="full-article" href="{{ root_url }}{{ post.url }}">Read on &rarr;</a>
2011-07-19 22:28:48 -04:00
</footer>
{% else %}
2011-07-22 00:14:26 -04:00
<div class="entry-content">{{ content }}</div>
2011-07-19 22:28:48 -04:00
{% endif %}