mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2024-11-29 05:23:50 +01: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 }}
|