{% for year, postsByYear in posts %}

{{ year }}

{% for month, postsByMonth in postsByYear %} {% for post in postsByMonth %}
{{ post.data.title }}
{{ post.date | formatDate("MM/DD") }}
{% endfor %} {% endfor %} {% endfor %}