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

20 lines
465 B
HTML
Raw Normal View History

2011-07-19 22:28:48 -04:00
---
layout: page
footer: false
2012-05-19 18:42:27 -04:00
body_id: archive
2011-07-19 22:28:48 -04:00
---
<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 %}
2012-05-19 18:42:27 -04:00
{% include post/variables.html %}
<article {% if linklog %}class='linklog'{% endif %}>
2011-07-19 22:28:48 -04:00
{% include archive_post.html %}
</article>
{% endfor %}
</div>