Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 570 Bytes

File metadata and controls

20 lines (19 loc) · 570 Bytes
layout page
title Blog Archive
description Everything I have written here, most recent first.
permalink /archive.html
nav blog

{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} {% for year in posts_by_year %}

{{ year.name }}

    {% for post in year.items %}
  • {{ post.date | date: "%b %-d" }} {{ post.title }}
  • {% endfor %}
{% endfor %}