blob: e6a5668a20b5dad53a5a2fe56343a9a8714e95b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{{ if or .Prev .Next -}}
<div class="docs-navigation d-flex justify-content-between">
<!-- https://www.feliciano.tech/blog/custom-sort-hugo-single-pages/ -->
{{ $pages := where site.RegularPages "Section" .Section -}}
{{ with $pages.Next . -}}
<a href="{{ .RelPermalink }}">
<div class="card my-1">
<div class="card-body py-2">
← {{ .Title }}
</div>
</div>
</a>
{{ end -}}
{{ with $pages.Prev . -}}
<a class="ms-auto" href="{{ .RelPermalink }}">
<div class="card my-1">
<div class="card-body py-2">
{{ .Title }} →
</div>
</div>
</a>
{{ end -}}
</div>
{{ end -}}
|