summaryrefslogtreecommitdiffstats
path: root/templates_gmi/page.html
blob: 26763726dc21d4771972b57f697c1ae82366bc54 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block content %}
{{ macros::page_content(page=page) }}

{% if page.higher %}
=> {{ page.higher.path }} ← {{ page.higher.title }}
{% endif %}{% if page.lower %}
=> {{ page.lower.path }} {{ page.lower.title }} →
{% endif %}
{% endblock content %}