aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/terms.html
blob: 02bf41251d185de8fc748b940c8c2da658cb64b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{{- /* 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 }} {{- $label := (index . 0).Parent.LinkTitle }}
<div>
    {{- range . }}
    <a  class="label" href="{{ .RelPermalink }}">#{{ .LinkTitle }}</a>
    {{- end }}
</div>
{{- end }}