2019-12-19 17:22:12 +01:00
|
|
|
{{ with .Date}}
|
2020-04-10 20:24:36 +02:00
|
|
|
<h5>{{ partial "docs/date" (dict "Date" . "Format" $.Site.Params.BookDateFormat) }}</h5>
|
2019-12-19 17:22:12 +01:00
|
|
|
{{ end }}
|
|
|
|
|
2020-03-19 22:00:45 +01:00
|
|
|
{{ range $taxonomy, $_ := .Site.Taxonomies }}
|
|
|
|
{{ with $terms := $.GetTerms $taxonomy }}
|
2020-01-17 21:31:26 +01:00
|
|
|
<div>
|
2020-03-19 22:00:45 +01:00
|
|
|
{{ range $n, $term := $terms }}{{ if $n }}, {{ end }}
|
2020-04-10 20:24:36 +02:00
|
|
|
<a href="{{ $term.RelPermalink }}">{{ $term.Title }}</a>
|
2019-12-19 17:22:12 +01:00
|
|
|
{{- end }}
|
2020-01-17 21:31:26 +01:00
|
|
|
</div>
|
2019-12-19 17:22:12 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|