Post History
{% assign current_year = "" %}
{% for post in site.posts %}
-
{% assign post_year = post.date | date: "%Y" %}
{% if post_year != current_year %}{{ post_year }}{% endif %}
{% assign current_year = post_year %}
{{ post.date | date: "%b %e" }}
{% endfor %}