mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 19:39:30 +00:00
17 lines
478 B
HTML
17 lines
478 B
HTML
{{ $dateFormat := (default "January 2, 2006" .Site.Params.BookDateFormat) }}
|
|
{{ with .Date}}
|
|
<h5>{{ .Format $dateFormat }}</h5>
|
|
{{ end }}
|
|
|
|
{{ range $term, $_ := .Site.Taxonomies }}
|
|
{{ with $list := $.Param $term }}
|
|
<div>
|
|
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
|
|
{{- with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }}
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{- end }}
|
|
{{- end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|