zerai.xyz/themes/notepadium/layouts/partials/article-bottom-navigation.html
2022-08-18 15:20:15 -04:00

12 lines
627 B
HTML

{{- if and (not (eq .Params.single true)) (or .PrevInSection .NextInSection) -}}
<section class="article navigation">
{{- with .NextInSection -}}
{{- $title := .Title | safeHTML -}}
{{- if $title -}}<p><a class="link" href="{{- .RelPermalink -}}"><span class="iconfont icon-article"></span>{{- $title -}}</a></p>{{- end -}}
{{- end -}}
{{- with .PrevInSection -}}
{{- $title := .Title | safeHTML -}}
{{- if $title -}}<p><a class="link" href="{{- .RelPermalink -}}"><span class="iconfont icon-article"></span>{{- .Title | safeHTML -}}</a></p>{{- end -}}
{{- end -}}
</section>
{{- end -}}