{% extends "base.html" %} {% block content %}
{% for page in section.pages %}

{{ page.title }}

{% endfor %} {% for sub in section.subsections %} {% set subsection = get_section(path=sub) %}

{{ subsection.title }}

{% for page in subsection.pages %}

{{ page.title }}

{% endfor %}

{% endfor %}
{% endblock content %}