vugo/layouts/partials/posts_pagination.html

8 lines
300 B
HTML
Raw Normal View History

2022-08-18 14:17:23 +02:00
<div class="pagination__buttons">
2023-03-09 21:04:37 +01:00
{{ if .NextInSection }}
<a class="button prev" href="{{ .NextInSection.RelPermalink }}">{{ .NextInSection.Title }}</a>
2022-08-18 14:17:23 +02:00
{{ end }}
2023-03-09 21:04:37 +01:00
{{ if .PrevInSection }}
<a class="button next" href="{{ .PrevInSection.RelPermalink }}">{{ .PrevInSection.Title }}</a>
{{ end }}
</div>