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

19 lines
445 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 }}
{{ range $n, $single := $list }}{{ if $n }}, {{ end -}}
<a href="/{{$term}}/{{$single}}/">{{ $single }}</a>
{{- end }}
<br />
{{ end }}
{{ end }}
</div>
{{ end }}