20 lines
565 B
HTML
20 lines
565 B
HTML
{{ if .Section }}
|
|
{{- $previousInSection := .PrevInSection -}}
|
|
{{- $nextInSection := .NextInSection -}}
|
|
|
|
{{ if or $previousInSection $nextInSection }}
|
|
<ul class="page-navigation">
|
|
{{ with $nextInSection -}}
|
|
<li class="previous-page">
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a>
|
|
</li>
|
|
{{- end }}
|
|
|
|
{{ with $previousInSection -}}
|
|
<li class="next-page">
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a>
|
|
</li>
|
|
{{- end }}
|
|
</ul>
|
|
{{ end }}
|
|
{{ end }}
|