{% extends "base.html" %} {% block title %}{{ section.title }} | {{ config.title }}{% endblock title %} {% block content %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %} {% if section.content %}
{{ section.content | safe }}
{% endif %}
{% if section.pages %}
{% for page in section.pages %}

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% elif page.summary %}

{{ page.summary | safe }}

{% endif %}
{% endfor %}
{% endif %} {% if section.subsections %}

Sections

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

{{ subsection.title }}

{% if subsection.description %}

{{ subsection.description }}

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