2012-01-02 23:15:05 -05:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Blog Archive
|
|
|
|
---
|
2018-10-29 22:29:33 -04:00
|
|
|
{% for post in site.posts %}
|
|
|
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
|
|
|
{% unless year == this_year %}
|
|
|
|
{% assign year = this_year %}
|
|
|
|
<h3>{{ year }}</h3>
|
|
|
|
{% endunless %}
|
|
|
|
{% include article_list.html %}
|
2012-01-02 23:15:05 -05:00
|
|
|
{% endfor %}
|