{# possible variables: - cycling_tag: collection tag to cycle through - sidebar: .njk include file as sidebar [optional] #} {% extends "_layouts/base.njk" %} {% block content %} {% if sidebar %} {% endif %}
{% set current_year = 0 %} {% for post in collections[cycling_tag] | i18n_filter %} {% set post_year = post.date | date("yyyy") %} {% if post_year != current_year %}

{{ post_year }}

{% set current_year = post_year %} {% endif %}

{{ post.data.title }}

{#

Debug: {{ post.date }} -> {{ post.date | date("dd/MM/yyyy") }}

#} {% if post.data.description %}

{{ post.data.description }}

{% else %}

{% excerpt post %}

{% endif %} {% if post.data.image.url %} {% endif %}

{{ "read-more" | i18n }}

{% endfor %}

{{ "end-of-feed" | i18n }}

{% endblock content %}