{% block content %}
Plats
{% set section = get_section(path = "plats/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
Desserts
Hypoglucidiques
{% set section = get_section(path = "desserts/hypoglucidique/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
Hyperglucidiques
{% set section = get_section(path = "desserts/hyperglucidique/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
Pains
{% set section = get_section(path = "pains/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
Nettoyage
{% set section = get_section(path = "nettoyage/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
Conservation
{% set section = get_section(path = "conservation/_index.md") %}
{% for page in section.pages | sort(attribute = "title") %}
-
{{ page.title }}
{% endfor %}
{% endblock content %}