blog/lib/layouts/post.njk
Viktor Varland 9f7a77273f
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
chore: big dump
2023-11-16 09:34:09 +01:00

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