diff options
Diffstat (limited to 'layouts/partials/docs/post-meta.html')
-rw-r--r-- | layouts/partials/docs/post-meta.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/partials/docs/post-meta.html b/layouts/partials/docs/post-meta.html new file mode 100644 index 0000000..37b6080 --- /dev/null +++ b/layouts/partials/docs/post-meta.html @@ -0,0 +1,18 @@ +{{ $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 }} |