22 lines
281 B
Plaintext
22 lines
281 B
Plaintext
|
{% extends "default.njk" %}
|
||
|
|
||
|
{% block main %}
|
||
|
|
||
|
{{ contents | safe }}
|
||
|
|
||
|
{% if previous %}
|
||
|
<p>
|
||
|
Previous:
|
||
|
<a href="/{{ previous.path }}">{{ previous.title }}</a>
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if next %}
|
||
|
<p>
|
||
|
Next:
|
||
|
<a href="/{{ next.path }}">{{ next.title }}</a>
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock %}
|