1
0
Fork 0
mirror of https://gitlab.com/EternalWanderer/vugo.git synced 2025-06-22 04:58:09 +02:00
vugo/layouts/partials/posts_pagination.html

10 lines
359 B
HTML

{{ if or .NextInSection .PrevInSection }}
<div class="pagination__buttons">
{{ if .NextInSection }}
<a class="button prev" href="{{ .NextInSection.RelPermalink }}">{{ .NextInSection.Title }}</a>
{{ end }}
{{ if .PrevInSection }}
<a class="button next" href="{{ .PrevInSection.RelPermalink }}">{{ .PrevInSection.Title }}</a>
{{ end }}
</div>
{{ end }}