Table des matières
{% for h1 in toc %}
{# - {{ h1.title }} #}
{% if h1.children %}
{% for h2 in h1.children %}
- {{ h2.title }}
{% if h2.children %}
{% for h3 in h2.children %}
- {{ h3.title }}
{% if h3.children %}
{% for h4 in h3.children %}
- {{ h4.title }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}