vugo/layouts/partials/posts_pagination.html

11 lines
359 B
HTML
Raw Normal View History

2022-08-18 14:17:23 +02:00
{{ if or .NextInSection .PrevInSection }}
<div class="pagination__buttons">
{{ if .NextInSection }}
2022-09-18 11:47:00 +02:00
<a class="button prev" href="{{ .NextInSection.RelPermalink }}">{{ .NextInSection.Title }}</a>
2022-08-18 14:17:23 +02:00
{{ end }}
{{ if .PrevInSection }}
2022-09-18 11:47:00 +02:00
<a class="button next" href="{{ .PrevInSection.RelPermalink }}">{{ .PrevInSection.Title }}</a>
2022-08-18 14:17:23 +02:00
{{ end }}
</div>
{{ end }}