mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
14 lines
383 B
HTML
14 lines
383 B
HTML
{{ with .Date}}
|
|
<h5>{{ partial "docs/date" (dict "Date" . "Format" $.Site.Params.BookDateFormat) }}</h5>
|
|
{{ end }}
|
|
|
|
{{ range $taxonomy, $_ := .Site.Taxonomies }}
|
|
{{ with $terms := $.GetTerms $taxonomy }}
|
|
<div>
|
|
{{ range $n, $term := $terms }}{{ if $n }}, {{ end }}
|
|
<a href="{{ $term.RelPermalink }}">{{ $term.Title }}</a>
|
|
{{- end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|