- {{ $tags := .Site.Taxonomies.tags }}
- {{ range $tag, $pages := $tags }}
-
- {{ $tag }}
-
+
Other {{ .Data.Plural | title }}
+
+ {{ $terms := index .Site.Taxonomies .Data.Plural }}
+ {{ range $term, $pages := $terms }}
+ {{ if ne $term $.Title }}
+ {{ with $.Site.GetPage (printf "/%s/%s" $.Data.Plural ($term | urlize)) }}
+
+ {{ .Title }}
+
+ {{ end }}
+ {{ end }}
{{ end }}
diff --git a/layouts/articles/single.html b/layouts/articles/single.html
index 40a331c..b540c2a 100644
--- a/layouts/articles/single.html
+++ b/layouts/articles/single.html
@@ -7,8 +7,8 @@