redstrate.com/themes/red/layouts/shortcodes/series-nav.html

21 lines
417 B
HTML
Raw Normal View History

2023-12-26 23:41:21 -05:00
{{ $prev := .Get 0 }}
{{ $next := .Get 1 }}
<div class="art-button-container">
{{ with .Page.GetPage $prev }}
<a class="art-button" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
{{ with .Page.GetTerms "series" }}
{{ range . }}
<p class="art-button">{{ .Title }}</p>
{{ end }}
{{ end }}
{{ with .Page.GetPage $next }}
<a class="art-button" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
</div>