2017-07-09 12:18:22 +00:00
|
|
|
extends: simple.liquid
|
|
|
|
title: Posts
|
|
|
|
route: posts
|
|
|
|
path: /posts
|
2013-05-10 18:18:10 +00:00
|
|
|
---
|
|
|
|
|
2017-07-09 12:18:22 +00:00
|
|
|
{% assign years = "2017, 2016, 2015, 2014, 2013, 2012, 2011" | split: ", " %}
|
|
|
|
{% for year in years %}
|
|
|
|
### {{year}}
|
|
|
|
|
|
|
|
{% for post in posts %}
|
|
|
|
{% assign postyear = post.date | date: "%Y" %}
|
|
|
|
{% if postyear == year %}
|
|
|
|
* {{post.date | date: "%d %b"}}: [{{post.title}}](/{{post.path}})
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{%endfor%}
|