{{ title }}
{% for menuSection in menuSections %} {% if menuSection.title %}
{{ menuSection.title }}
{% endif %} {% for page in menuSection.pages %}
{{ page.title }}
{% if page.isActive and page.headings %}
{% for heading in page.headings %} {% if heading.level < 3 %}
{{ heading.heading }}
{% endif %} {% endfor %}
{% endif %}
{% endfor %} {% endfor %}
{{ page.title }}
{{ page.content|safe }}
{% if pagination.previousPage %}
Previous
{{pagination.previousPage.title}}
{% endif %} {% if pagination.nextPage %}
Next
{{pagination.nextPage.title}}
{% endif %}