diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html index e275bc7..3017614 100644 --- a/layouts/partials/tags.html +++ b/layouts/partials/tags.html @@ -1,19 +1,25 @@
- {{range $taxonomyname, $taxonomy := .Site.Taxonomies}} - {{range $key, $value := $taxonomy }} - - - - - - {{$key}} - - {{end}} - {{end}} -
+ {{ range $taxonomy, $terms := site.Taxonomies }} + {{ range $term := $terms }} + + {{ if eq $taxonomy "tags" }} + + + + + {{ else }} + + + + + {{ end }} + {{ .Page.Title | lower }} + + {{ end }} + {{ end }} + \ No newline at end of file