hacks-guide-minimal-mistake.../_pages/year-archive.html
2016-03-05 21:29:39 -05:00

15 lines
422 B
HTML

---
layout: archive
permalink: /year-archive/
title: "Posts by Year"
---
{% include absolute-url.liquid %}
{% capture written_year %}'None'{% endcapture %}
{% for post in site.posts %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% if year != written_year %}
<h3>{{ year }}</h3>
{% capture written_year %}{{ year }}{% endcapture %}
{% endif %}
{% include post-single.html %}
{% endfor %}