mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 07:45:01 -04:00
21 lines
724 B
HTML
21 lines
724 B
HTML
{% unless page.no_header %}
|
|
<header>
|
|
{% if index %}
|
|
<h1 class="entry-title"><a href="{{ site.root }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
|
|
{% 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 %}
|
|
<div class="entry-content">{{ content | full_urls: site.root | exerpt | smart_quotes }}</div>
|
|
<footer>
|
|
<a rel="full-article" href="{{ site.root }}{{ post.url }}">Read on →</a>
|
|
</footer>
|
|
{% else %}
|
|
<div class="entry-content">{{ content | full_urls: site.root | smart_quotes }}</div>
|
|
{% endif %}
|