Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 469 Bytes

archive.md

File metadata and controls

24 lines (18 loc) · 469 Bytes
layout title permalink
default2
Archive
/archive/

Archive

{% for post in site.posts %}

{% assign year = post.date | date: "%Y" %}

{% if year != previous_year %}

{{ year }}

{% assign previous_year = year %} {% endif %}

{{ post.title }} | {{ post.date | date: "%b %-d" }}

{% endfor %}