Duniter
{% set index = get_section(path="_index.md") %}
{% for p in index.pages %}
{% if not p.extra.hide %}
{{p.title}}
{% endif %}
{% endfor %}
{% for s in index.subsections %}{% set subsection = get_section(path=s) %}
{% if not subsection.extra.hide %}
{{subsection.title}}
{% endif %}
{% endfor %}