mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
35 lines
962 B
HTML
35 lines
962 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div>
|
|
<article role="article">
|
|
{% if page.title %}
|
|
<header>
|
|
<h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
|
{% if page.date %}<p class="meta">{% include post/date.html %}{{ time }}</p>{% endif %}
|
|
</header>
|
|
{% endif %}
|
|
{{ content }}
|
|
{% unless page.footer == false %}
|
|
<footer>
|
|
<p class="meta">{% include post/meta.html %}{% include custom/page_meta.html %}</p>
|
|
{% unless page.sharing == false %}
|
|
{% include post/sharing.html %}
|
|
{% endunless %}
|
|
</footer>
|
|
{% endunless %}
|
|
</article>
|
|
{% include custom/after_page.html %}
|
|
{% if page.comments == true %}{% include comments.html %}{% endif %}
|
|
</div>
|
|
{% unless page.sidebar == false %}
|
|
<aside class="sidebar">
|
|
{% if site.page_asides.size %}
|
|
{% include_array page_asides %}
|
|
{% else %}
|
|
{% include_array default_asides %}
|
|
{% endif %}
|
|
</aside>
|
|
{% endunless %}
|