android.moparisthebest.org/source/_layouts/post.html

40 lines
1.2 KiB
HTML
Raw Normal View History

2011-07-19 22:28:48 -04:00
---
layout: default
single: true
---
<div>
2012-05-19 18:42:27 -04:00
{% include post/variables.html %}
<article class="hentry {% if linklog %}linklog{% endif %}" role="article">
2011-07-19 22:28:48 -04:00
{% include article.html %}
<footer>
<p class="meta">
2012-06-06 02:04:36 -04:00
{% include post/meta.html %}
{% include custom/post_meta.html %}
2011-07-19 22:28:48 -04:00
</p>
{% unless page.sharing == false %}
{% include post/sharing.html %}
{% endunless %}
<p class="meta">
{% if page.previous.url %}
<a class="basic-alignment left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">&laquo; {{page.previous.title}}</a>
{% endif %}
{% if page.next.url %}
2012-05-19 18:42:27 -04:00
<a class="basic-alignment right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} &raquo;</a>
{% endif %}
</p>
2011-07-19 22:28:48 -04:00
</footer>
</article>
2012-06-06 23:57:20 -04:00
{% include custom/after_post.html %}
2012-06-06 02:04:36 -04:00
{% if page.comments == true %}{% include comments.html %}{% endif %}
2011-07-19 22:28:48 -04:00
</div>
2012-06-16 18:56:45 -04:00
{% unless page.sidebar == false or site.default_sidebar == false %}
2011-09-21 16:43:34 -04:00
<aside class="sidebar">
2012-06-16 18:56:45 -04:00
  {% if page.sidebar == nil or page.sidebar == 'collapse' %}
   {% include_sidebar site.post_sidebar %}
  {% else %}
   {% include_sidebar %}
  {% endif %}
2011-07-30 15:44:23 -04:00
</aside>
{% endunless %}