diff options
Diffstat (limited to 'layouts/partials/docs/post-meta.html')
-rw-r--r-- | layouts/partials/docs/post-meta.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/layouts/partials/docs/post-meta.html b/layouts/partials/docs/post-meta.html index a129944..41221c7 100644 --- a/layouts/partials/docs/post-meta.html +++ b/layouts/partials/docs/post-meta.html @@ -7,12 +7,13 @@ {{ range $term, $_ := .Site.Taxonomies }} {{ with $list := index $.Params $term }} + <div> {{ range $n, $single := $list }}{{ if $n }}, {{ end }} - {{ with $.Site.GetPage (printf "/%s/%s" $term $single) }} - <a href="{{ .RelPermalink }}">{{ $single }}</a> + {{ with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }} + <a href="{{ .RelPermalink }}">{{ .Title }}</a> {{- end }} {{- end }} - <br /> + </div> {{ end }} {{ end }} |