2016-08-22 01:01:17 -07:00

19 lines
425 B
HTML

---
layout: page
title: "Blog index"
---
<div id="archive-list">
{% assign reversedposts = site.posts | reverse %}
{% for post in reversedposts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
<article>
{% include blog/archive_post.html %}
</article>
{% endfor %}
</div>