android.moparisthebest.org/themes/classic/source/archives.html
Brandon Mathis 62c9780c67 Added archive_post partial
Added post_category partial
Added archives page
2011-06-27 17:38:51 -04:00

18 lines
364 B
HTML

---
layout: post
title: Blog Archive
no_meta: true
---
<div class="blog-archives">
{% for post in site.posts reverse %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
<article>
{% include archive_post.html %}
</article>
{% endfor %}
</div>