hugo-theme-anubis2/layouts/partials/post-pagination.html

19 lines
842 B
HTML
Raw Permalink Normal View History

{{ if or ( .PrevInSection ) ( .NextInSection ) }}
{{ $toNewPostMessage := i18n "toNewPost" }}
{{ $toOldPostMessage := i18n "toOldPost" }}
<div class="pagination post-pagination">
2020-06-07 13:25:18 +02:00
<div class="left pagination-item {{ if not .NextInSection }}disabled{{ end }}">
{{ if .NextInSection }}
2023-08-12 10:28:38 +02:00
<a href="{{ .NextInSection.RelPermalink }}">{{ .NextInSection.Title | default $toNewPostMessage | markdownify }}</a>
{{ end }}
</div>
2020-06-07 13:25:18 +02:00
<div class="right pagination-item {{ if not .PrevInSection }}disabled{{ end }}">
{{ if .PrevInSection }}
2023-08-12 10:28:38 +02:00
<a href="{{ .PrevInSection.RelPermalink }}">{{ .PrevInSection.Title | default $toOldPostMessage | markdownify }}</a>
2020-06-07 13:25:18 +02:00
{{ end }}
</div>
</div>
{{ end }}
{{ partial "pagination-extra.html" . }}