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

{{ page.title }}

{{ page.content }} {% for p in pages|sort(attribute='sort-order') %} {% if next_up %}
Next read the {{ p.title|lower }} section. {% set next_up = False %} {% endif %} {% if p.slug == page.slug %} {% set next_up = True %} {% endif %} {% endfor %}
{% include "sidebar.html" %}
{% endblock %}