mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
f954689bb6
Feed urls are more flexible with linklog items
23 lines
803 B
HTML
23 lines
803 B
HTML
{% unless page.no_header %}
|
|
<header>
|
|
{% include post/title.html %}
|
|
{% unless page.meta == false %}
|
|
<p class="meta">
|
|
{% include post/date.html %}{{ time }}
|
|
• <a rel="bookmark" href="{{ permalink }}">{{ site.permalink_label }}</a>
|
|
</p>
|
|
{% endunless %}
|
|
</header>
|
|
{% endunless %}
|
|
<div class="entry-content">{{ content }}</div>
|
|
{% if index %}
|
|
<footer>
|
|
{% if site.disqus_short_name and page.comments != false and site.disqus_show_comment_count == true %}
|
|
<p><a class="comments-link" href="{% if index %}{{ permalink }}{% endif %}#disqus_thread">View comments »</a></p>
|
|
{% endif %}
|
|
{% if excerpted != 'false' %}
|
|
<p><a rel="full-article" href="{{ permalink }}">{{ site.excerpt_link }}</a></p>
|
|
{% endif %}
|
|
</footer>
|
|
{% endif %}
|