mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-15 05:35:00 -05:00
87f300b2bc
2. Fixed Newer pagination link on page 2 3. Improved sidebar section breakdown on collapse 4. Removed sharing links from the blog index page (moved to pages) 5. Improved styling for metadata on the blog index 6. Moved /blog/archives.html to /blog/archives/index.html 7. Improved responsive layout styling bugs
23 lines
673 B
HTML
23 lines
673 B
HTML
{% unless page.no_header %}
|
|
<header>
|
|
{% if index %}
|
|
<h1 class="entry-title"><a href="{{ post.url }}">{{ post.title | titlecase }}</a></h1>
|
|
{% else %}
|
|
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
|
|
{% endif %}
|
|
{% unless page.no_meta %}
|
|
<p class="meta">{% include post_date.html %}</p>
|
|
{% endunless %}
|
|
</header>
|
|
{% if index %}
|
|
{% endif %}
|
|
{% endunless %}
|
|
{% if index %}
|
|
<div class="entry-content">{{ content | exerpt | smart_quotes }}</div>
|
|
<footer>
|
|
<a rel="full-article" href="{{ post.url }}">Read on →</a>
|
|
</footer>
|
|
{% else %}
|
|
<div class="entry-content">{{ content | smart_quotes }}</div>
|
|
{% endif %}
|