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

15 lines
408 B
HTML
Raw Normal View History

{{ $dateFormat := (default "January 2, 2006" .Site.Params.BookDateFormat) }}
2019-12-19 17:22:12 +01:00
{{ with .Date}}
<h5>{{ .Format $dateFormat }}</h5>
{{ end }}
{{ range $taxonomy, $_ := .Site.Taxonomies }}
{{ with $terms := $.GetTerms $taxonomy }}
2020-01-17 21:31:26 +01:00
<div>
{{ range $n, $term := $terms }}{{ if $n }}, {{ end }}
<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 }}