mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2025-06-08 22:34:25 +02:00
11 lines
353 B
HTML
11 lines
353 B
HTML
|
{{ if or .NextInSection .PrevInSection }}
|
||
|
<div class="pagination__buttons">
|
||
|
{{ if .NextInSection }}
|
||
|
<a class="button prev" href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }}</a>
|
||
|
{{ end }}
|
||
|
{{ if .PrevInSection }}
|
||
|
<a class="button next" href="{{ .PrevInSection.Permalink }}">{{ .PrevInSection.Title }}</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ end }}
|