apotheke/layouts/partials/prev-next.html

24 lines
429 B
HTML
Raw Normal View History

2024-06-19 22:18:29 +00:00
{{ with .NextInSection }}
2024-05-27 21:13:51 +00:00
<div class="prev-post">
<a href="{{ .RelPermalink }}">
<p>
2024-05-27 21:13:51 +00:00
&#8592;
{{ i18n "previous" }}:
{{ .Title }}
</p>
</a>
2024-05-27 21:13:51 +00:00
</div>
{{ end }}
2024-06-19 22:18:29 +00:00
{{ with .PrevInSection }}
2024-05-27 21:13:51 +00:00
<div class="next-post">
<p>
<a href="{{ .RelPermalink }}">
{{ i18n "next" }}:
{{ .Title }}
&#8594;
</a>
</p>
</div>
{{ end }}