2019-12-19 17:22:12 +01:00
|
|
|
{{ $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat }}
|
|
|
|
{{ if or .Date .Params.tags }}
|
|
|
|
<div>
|
|
|
|
{{ with .Date}}
|
|
|
|
<h5>{{ .Format $dateFormat }}</h5>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ range $term, $_ := .Site.Taxonomies }}
|
|
|
|
{{ with $list := index $.Params $term }}
|
2020-01-13 18:06:09 +01:00
|
|
|
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
|
|
|
|
{{ with $.Site.GetPage (printf "/%s/%s" $term $single) }}
|
2020-01-16 09:58:53 +01:00
|
|
|
<a href="{{ .RelPermalink }}">{{ $single }}</a>
|
2020-01-13 18:06:09 +01:00
|
|
|
{{- end }}
|
2019-12-19 17:22:12 +01:00
|
|
|
{{- end }}
|
|
|
|
<br />
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{{ end }}
|