{% extends "base.html" %} {% block title %}Recipes archive — {{ config.title }}{% endblock %} {% block h1title %}

{{ trans(key="archive_title", lang=lang) }}

{% endblock %} {% block body %} {% if lang != "en" %} {% set section_path = "recipes/_index." ~ lang ~ ".md" %} {% else %} {% set section_path = "recipes/_index.md" %} {% endif %} {% set section = get_section(path=section_path) %}

Tip: If you want to search for some recipe, try using your browsers "Find" function. In most browsers you can open it with Ctrl+F or F3.

{% for year, recipes in section.pages | group_by(attribute="year") %}

{{ year }}

{% endfor %}
{% endblock %}