{% extends "layout.html" %} {% block content %}

{{ section.title }}

{{ section.content | safe }}
{% if paginator %} {% set pages = paginator.pages %} {% else %} {% set pages = section.subsections %} {% endif %} {% for page in pages %} {% set page = get_section(path=page) %}
{{ page.extra.image }}

{{ page.title }}

{{ page.description }}

{% endfor %}
{% endblock content %} {% block pagination %} {% if paginator.previous or paginator.next %}
{% if not paginator.previous %} Previous {% else %} Previous {% endif %} {% if not paginator.next %} Next Page {% else %} Next page {% endif %}
{% endif %} {% endblock %}