summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_partials/terms.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/neonxp/layouts/_partials/terms.html')
-rw-r--r--themes/neonxp/layouts/_partials/terms.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/_partials/terms.html b/themes/neonxp/layouts/_partials/terms.html
new file mode 100644
index 0000000..f826abb
--- /dev/null
+++ b/themes/neonxp/layouts/_partials/terms.html
@@ -0,0 +1,27 @@
+{{- /*
+For a given taxonomy, renders a list of terms assigned to the page.
+
+@context {page} page The current page.
+@context {string} taxonomy The taxonomy.
+
+@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+*/}}
+
+{{- $page := .page }}
+{{- $taxonomy := .taxonomy }}
+
+{{- with $page.GetTerms $taxonomy }}
+{{- if . }}
+<article>
+ {{- $label := (index . 0).Parent.LinkTitle }}
+ <div>
+ <h3>{{ $label }}:</h3>
+ <ul class="taxonomy">
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+ </div>
+ {{- end }}
+</article>
+{{- end }} \ No newline at end of file