fix: mistake in post-nav template

This commit is contained in:
Daniel Fichtinger 2025-07-14 22:50:26 -04:00
parent 1f2b736815
commit 115751b120

View file

@ -1,9 +1,9 @@
<div class="post-nav">
<center>
<span class="symbol">&lt;</span>{% if previous %}<a
href="{{ previous.url }}"
href="{{ previous }}"
>prev</a>{% endif %}{% if previous and next %}<span class="symbol"
>|</span>{% endif %}{% if next %}<a href="{{ next.url }}">next</a>{% endif
>|</span>{% endif %}{% if next %}<a href="{{ next }}">next</a>{% endif
%}<span class="symbol">&gt;</span>
</center>
</div>