{% for year, yearPosts in collections.postsByYear %}
    {{ year }}
      {% for post in yearPosts | reverse %}
    1. {% if post.data.title %}{{ post.data.title }}{% else %}{{ post.url }}{% endif %}
      {{ post.date | readableDate("dd LLLL yyyy") }}
    2. {% endfor %}
    {% endfor %}