hugo-theme-anubis2/layouts/partials/paginationPost.html

14 lines
640 B
HTML
Raw Normal View History

{{ if or ( .PrevInSection ) ( .NextInSection ) }}
<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 }}
<a href="{{ .NextInSection.Permalink | relLangURL }}">{{ .NextInSection.Title }}</a>
{{ end }}
</div>
2020-06-07 13:25:18 +02:00
<div class="right pagination-item {{ if not .PrevInSection }}disabled{{ end }}">
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink | relLangURL }}">{{ .PrevInSection.Title }}</a>
{{ end }}
</div>
</div>
{{ end }}