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 }}
+
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
- {{ with $.Site.GetPage (printf "/%s/%s" $term $single) }}
-
{{ $single }}
+ {{ with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }}
+
{{ .Title }}
{{- end }}
{{- end }}
-
+
{{ end }}
{{ end }}
diff --git a/layouts/partials/docs/taxonomy.html b/layouts/partials/docs/taxonomy.html
index f2c00d5..db82e4c 100644
--- a/layouts/partials/docs/taxonomy.html
+++ b/layouts/partials/docs/taxonomy.html
@@ -2,7 +2,7 @@