Viktor Varland
9f7a77273f
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
25 lines
588 B
Plaintext
25 lines
588 B
Plaintext
{% extends "default.njk" %}
|
|
|
|
{% block main %}
|
|
|
|
{{ contents | safe }}
|
|
|
|
{% if previous or next %}
|
|
<hr class="{{ classes.hr }}"/>
|
|
<div class="flex flex-row justify-around">
|
|
{% 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 %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|