keimena/layouts/partials/prev-next.html
2024-06-20 00:18:29 +02:00

23 lines
429 B
HTML
Executable file

{{ with .NextInSection }}
<div class="prev-post">
<p>
<a href="{{ .RelPermalink }}">
&#8592;
{{ i18n "previous" }}:
{{ .Title }}
</a>
</p>
</div>
{{ end }}
{{ with .PrevInSection }}
<div class="next-post">
<p>
<a href="{{ .RelPermalink }}">
{{ i18n "next" }}:
{{ .Title }}
&#8594;
</a>
</p>
</div>
{{ end }}