blob: 8c58feaea73fa07d7cad69d66ff2c1e4e5192deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
layout: default
title: Blog Archives
---
{% for post in site.posts reverse %}
<section class="archive">
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h1 class="archive-title">{{ year }}</h1>
{% endunless %}
<article class="archive">
{% include archive_post.html %}
</article>
</section>
{% endfor %}
|