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

{{ section.title }}

{{ section.content | safe }}
{% if paginator %} {{ paginator }} {% set pages = paginator.pages %} {% else %} {% if section.subsections %} {% set pages = section.subsections %} {% set subs = section.subsections %} {% else %} {% set pages = section.pages %} {% endif %} {% endif %} {% for page in pages %} {% if subs %} {% set page = get_section(path=page) %} {% endif %} {% if page.extra.image %} {% set image = page.path ~ page.extra.image %} {% endif %} {% if image %} {% set resized = resize_image(path="/content" ~ image, width=200, height=200, op="fit_height") %} {% else %} {% set resized = "" %} {% endif %}
{% if resized %}
{% else %} {% endif %}

{{ 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 %}