mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-17 15:03:20 +00:00
21 lines
786 B
HTML
21 lines
786 B
HTML
<div class="row row-cols-2 mt-5 mb-3">
|
|
<div class="col">
|
|
{{ with .NextInSection -}}
|
|
{{ if .OutputFormats.Get "html" -}}
|
|
<a class="next" href="{{ .RelPermalink }}">
|
|
{{- partial "assets/icon.html" (dict "icon" "fas arrow-left" "spacing" false) }} {{ .LinkTitle }}
|
|
</a>
|
|
{{- end -}}
|
|
{{ end -}}
|
|
</div>
|
|
<div class="col text-end">
|
|
{{ with .PrevInSection -}}
|
|
{{ if .OutputFormats.Get "html" -}}
|
|
<a class="previous" href="{{ .RelPermalink }}">
|
|
{{ .LinkTitle }} {{- partial "assets/icon.html" (dict "icon" "fas arrow-right" "spacing" false) }}
|
|
</a>
|
|
{{- end -}}
|
|
{{ end -}}
|
|
</div>
|
|
</div>
|