mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
24 lines
883 B
HTML
24 lines
883 B
HTML
{% unless page.no_header %}
|
|
<header>
|
|
{% 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 %}
|
|
• <a href="{% if post.url %}{{ permalink }}{% endif %}#disqus_thread">Comments</a>
|
|
{% endif %}
|
|
• <a rel="bookmark" href="{{ permalink }}">{{ site.permalink_label }}</a>
|
|
</p>
|
|
{% endunless %}
|
|
</header>
|
|
{% endunless %}
|
|
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
|
|
{% if post.url and excerpted %}
|
|
<div class="entry-content">{{ content | excerpt }}</div>
|
|
<footer>
|
|
<a rel="full-article" href="{{ permalink }}">{{ site.excerpt_link }}</a>
|
|
</footer>
|
|
{% else %}
|
|
<div class="entry-content">{{ content }}</div>
|
|
{% endif %}
|