This is a list of posts, first grouped by year, then month, then sorted by age. {% set chronological = config['chronological'] %} {% for year in chronological|sort(reverse=True) %}

{{ year | strftime("%Y") }}

{% for month in chronological[year] %}

{{ month | strftime("%B") }}

{% for mtime in chronological[year][month]|sort(reverse=True) %} {% set page = chronological[year][month][mtime] %} {{ page.title }}
{% endfor %} {% endfor %} {% endfor %}