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

23 lines
830 B
HTML
Raw Normal View History

2011-07-19 22:28:48 -04:00
{% unless page.no_header %}
<header>
2012-05-19 18:42:27 -04:00
{% include post/title.html %}
2011-07-19 22:28:48 -04:00
{% unless page.meta == false %}
2011-09-21 16:43:34 -04:00
<p class="meta">
{% include post/date.html %}{{ time }}
2012-05-19 18:42:27 -04:00
&bull; <a rel="bookmark" href="{{ permalink }}">{{ site.permalink_label }}</a>
2011-09-21 16:43:34 -04:00
</p>
2011-07-19 22:28:48 -04:00
{% endunless %}
</header>
{% endunless %}
2011-07-22 00:14:26 -04:00
<div class="entry-content">{{ content }}</div>
2012-05-19 18:42:27 -04:00
{% if index %}
<footer>
2012-05-22 17:33:55 -04:00
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
2012-05-19 18:42:27 -04:00
<p><a class="comments-link" href="{% if index %}{{ permalink }}{% endif %}#disqus_thread">View comments &raquo;</a></p>
{% endif %}
{% if excerpted != 'false' %}
<p><a rel="full-article" href="{{ permalink }}">{{ site.excerpt_link }}</a></p>
{% endif %}
</footer>
2011-07-19 22:28:48 -04:00
{% endif %}