android.moparisthebest.org/source/index.html
2012-06-16 17:56:45 -05:00

31 lines
861 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: default
---
<div class="blog-index">
{% for post in paginator.posts %}
{% include post/variables.html %}
<article {% if linklog %}class="linklog"{% endif %}>
{% include article.html %}
</article>
{% endfor %}
<div class="pagination">
{% if paginator.next_page %}
<a class="prev" href="{{paginator.next_page}}">&larr; Older</a>
{% endif %}
<a href="/archives">Blog Archives</a>
{% if paginator.previous_page %}
<a class="next" href="{{paginator.previous_page}}">Newer &rarr;</a>
{% endif %}
</div>
</div>
{% unless page.sidebar == false or site.default_sidebar == false %}
<aside class="sidebar">
  {% if page.sidebar == nil or page.sidebar == 'collapse' %}
   {% include_sidebar site.blog_index_sidebar %}
  {% else %}
   {% include_sidebar %}
  {% endif %}
</aside>
{% endunless %}