{% for year, date_year in dates|groupby( 'date.year' ) %}

{{ year }}

{% for month, articles in date_year|groupby( 'date.month' ) %}

{{ articles[ 0 ].date.strftime( '%B' ) }}

    {% for article in articles %}
  1. {{ article.title }}
  2. {% endfor %}
{% endfor %} {% endfor %}