{% extends "base.html" %} {% block title %} Recipe archive - Yaroslav's recipe book {% endblock %} {% block header %}

Yaroslav's recipe archive

{% endblock %} {% block content %} {% set section = get_section(path="food/_index.md") %}
{% for year, posts in section.pages | group_by(attribute="year") %}

{{ year }}

{% endfor %}
{% endblock %}