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

24 lines
877 B
HTML
Raw Normal View History

{% unless page.no_header %}
<header>
2012-02-12 08:12:22 -05:00
{% include post/title.html %}
{% unless page.meta == false %}
<p class="meta">
{% include post/date.html %}{{ time }}
{% if site.disqus_short_name and page.comments != false and site.disqus_show_comment_count == true %}
&bull; <a href="{% if index %}{{ permalink }}{% endif %}#disqus_thread">Comments</a>
{% endif %}
2012-02-12 08:12:22 -05:00
&bull; <a rel="bookmark" href="{{ permalink }}">{{ site.permalink_label }}</a>
</p>
{% endunless %}
</header>
{% endunless %}
2012-02-12 08:12:22 -05:00
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
{% if index and excerpted %}
<div class="entry-content">{{ content | excerpt }}</div>
2012-02-12 08:12:22 -05:00
<footer>
<a rel="full-article" href="{{ permalink }}">{{ site.excerpt_link }}</a>
</footer>
{% else %}
2012-02-12 08:12:22 -05:00
<div class="entry-content">{{ content }}</div>
{% endif %}