summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_partials
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--themes/neonxp/layouts/_partials/terms.html31
1 files changed, 10 insertions, 21 deletions
diff --git a/themes/neonxp/layouts/_partials/terms.html b/themes/neonxp/layouts/_partials/terms.html
index f826abb..ec607ca 100644
--- a/themes/neonxp/layouts/_partials/terms.html
+++ b/themes/neonxp/layouts/_partials/terms.html
@@ -1,27 +1,16 @@
-{{- /*
-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>
+{{- $label := (index . 0).Parent.LinkTitle }}
+<div>
+ <h3>{{ i18n $label }}:</h3>
+ <ul class="taxonomy">
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+</div>
+{{- end }}
{{- end }} \ No newline at end of file