Add a duplicate series-box to the bottom of the page

This commit is contained in:
2022-04-19 17:51:03 -05:00
parent 8cadf8e735
commit ac9ca6f97e
2 changed files with 20 additions and 19 deletions

View File

@ -0,0 +1,17 @@
{{ with (.GetTerms "series") }}
{{ $series := slice }}
{{ range . }}
{{ $series = $series | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
{{ end }}
<div class="series-box">
{{ partial "icon.html" "info" }}
{{ if gt (len $series) 1 }}
This post is part of multiple series:
{{ else }}
This post is part of a series:
{{ end }}
{{ delimit $series ", " }}
</div>
{{ end }}