{# possible variables: - cycling_tag: collection tag to cycle through - sidebar: .njk include file as sidebar [optional] #} {% extends "_layouts/base.njk" %} {% block content %} {% if sidebar %}
{% include sidebar + "_sidebar.njk" %}
{% endif %}
{{ content | safe }}
{% for post in collections[cycling_tag] | i18n_filter %}

2025

{{ post.data.title }}

{#

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

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

{{ post.data.description }}

{% else %}

{% excerpt post %}

{% endif %} {{ "read-more" | i18n }} {% if post.data.image %} {{ post.data.image.alt }} {% endif %}
{% endfor %}
{% endblock content %}