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-18 16:59:59 -04:00
|
|
|
footer: false
|
2012-02-12 13:27:17 -05:00
|
|
|
body_id: archive
|
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 %}
|
2012-02-12 13:27:17 -05:00
|
|
|
{% include post/variables.html %}
|
|
|
|
<article {% if linklog %}data-linklog{% endif %}>
|
2011-06-27 17:38:51 -04:00
|
|
|
{% include archive_post.html %}
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|