android.moparisthebest.org/source/_layouts/category_index.html
2012-05-19 17:42:27 -05:00

20 lines
465 B
HTML

---
layout: page
footer: false
body_id: archive
---
<div id="blog-archives" class="category">
{% for post in site.categories[page.category] %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
{% include post/variables.html %}
<article {% if linklog %}class='linklog'{% endif %}>
{% include archive_post.html %}
</article>
{% endfor %}
</div>