{% set postsByDate = posts | entries %}
{% for postsGroupedByYear in postsByDate %} {% set year = postsGroupedByYear | first %} {% set postsGroupedByMonth = postsGroupedByYear | last | entries %} {% for postsInMonth in postsGroupedByMonth %} {% set isFirstMonthOfList = loop.index0 === 0 %} {% set month = postsInMonth | first %}
{% if isFirstMonthOfList %}

{{ year }}

{% endif %}
{% set allPosts = postsInMonth | last %} {% for post in allPosts %}
{{ post.data.title }}
{{ post.date | formatDate("MM/DD") }}
{% endfor %} {% endfor %} {% endfor %}