permalink: /posts
title: Posts
layout: simple.liquid
data:
route: posts
---
{% assign years = "2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011" | split: ", " %}
{% for year in years %}
{{year}}
{% for post in collections.posts.pages %}
{% assign postyear = post.published_date | date: "%Y" %}
{% if postyear == year %}
- {{ post.published_date | date: "%d %b"}}: {{post.title}}
{% endif %}
{% endfor %}
{%endfor%}