2016-02-25 04:08:59 +01:00
|
|
|
---
|
|
|
|
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 %}
|
2016-03-06 03:29:39 +01:00
|
|
|
{% include post-single.html %}
|
2016-02-25 04:08:59 +01:00
|
|
|
{% endfor %}
|