Duniter
{% set index = get_section(path="_index.md") %}
{% set contributeurs = get_section(path="contributeurs/_index.md") %}
{% for p in index.pages | concat(with=contributeurs) %}
{% if not p.extra.hide %}
{{p.title}}
{% endif %}
{% endfor %}
{% for s in index.subsections | reverse %}
{% set subsection = get_section(path=s) %}
{% if not subsection.extra.hide and subsection.path != contributeurs.path %}
{{subsection.title}}
{% endif %}
{% endfor %}