hugo-book-theme/layouts/partials/docs/post-meta.html

22 lines
537 B
HTML
Raw Normal View History

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-17 21:31:26 +01:00
<div>
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
2020-01-17 21:31:26 +01:00
{{ with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}
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 }}
</div>
{{ end }}