blob: e52211b8898d80215e224e625b89cad8d26362a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{{- $page := .page }}
{{- $taxonomy := .taxonomy }}
{{- with $page.GetTerms $taxonomy }}
{{- $label := (index . 0).Parent.LinkTitle }}
{{- range . }}
<a class="badge text-bg-secondary" href="{{ .RelPermalink }}">
{{ .LinkTitle }}
</a>
{{- end }}
{{- end }}
|