net/blog/index.html

15 lines
329 B
HTML
Raw Normal View History

2012-01-02 23:15:05 -05:00
---
layout: page
2022-05-26 21:57:21 -04:00
title: Archive
2012-01-02 23:15:05 -05:00
---
2022-05-26 21:57:21 -04:00
<section class="h-feed">
{% for post in site.posts %}
2018-10-29 22:29:33 -04:00
{% 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 %}
2022-05-26 21:57:21 -04:00
</section>