blob: 70adb0b9fa31497875851ccc122b9286bc77b39b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ $dateFormat := (default "January 2, 2006" .Site.Params.BookDateFormat) }}
{{ with .Date}}
<h5>{{ .Format $dateFormat }}</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 }}
|