diff --git a/templates/post.gohtml b/templates/post.gohtml index a626c4a..ef3f90b 100644 --- a/templates/post.gohtml +++ b/templates/post.gohtml @@ -10,6 +10,18 @@
{{ md . }}
{{ end }} + {{ $taxonomies := blog.Taxonomies }} + {{ $post := . }} + {{ range $i, $tax := $taxonomies }} + {{ $tvs := ps $post $tax.Name }} + {{ if gt (len $tvs) 0 }} +

In {{ $tax.Title }}: + {{ range $j, $tv := $tvs }} + {{ $tv }} + {{ end }} +

+ {{ end }} + {{ end }} {{ end }}