{% extends "index.html" %} {% block content %}
{{ section.content | safe }}
{% if section.extra.list_pages %}

PAGES

{% for article in section.pages %}

{{ article.title }}

{% endfor %} {% endif %} {% if section.extra.list_subsections %}

SUBSECTIONS

{% for section in section.subsections %} {% set section = get_section(path=section, metadata_only=true) %}

{{ section.title }}

{% endfor %} {% endif %}
{% endblock content %}