main
html 17 lines 525 Bytes
Raw
1 {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
2 {{- if and (gt (len $pages) 1) (in $pages . ) }}
3 <nav class="paginav">
4 {{- with $pages.Next . }}
5 <a class="prev" href="{{ .Permalink }}">
6 <span class="title">« {{ i18n "prev_page" }}</span>
7 <span>{{- .Name -}}</span>
8 </a>
9 {{- end }}
10 {{- with $pages.Prev . }}
11 <a class="next" href="{{ .Permalink }}">
12 <span class="title">{{ i18n "next_page" }} »</span>
13 <span>{{- .Name -}}</span>
14 </a>
15 {{- end }}
16 </nav>
17 {{- end }}