2011-06-27 17:38:51 -04:00
|
|
|
---
|
2011-07-12 19:40:57 -04:00
|
|
|
layout: page
|
2011-06-27 17:38:51 -04:00
|
|
|
title: Blog Archive
|
2011-07-12 19:40:57 -04:00
|
|
|
no_footer: true
|
2011-06-27 17:38:51 -04:00
|
|
|
---
|
2011-07-12 19:40:57 -04:00
|
|
|
|
|
|
|
<div id="blog-archives">
|
2011-06-27 17:38:51 -04:00
|
|
|
{% 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>
|