11 lines
478 B
HTML
11 lines
478 B
HTML
{{ $context := .context }}
|
|
{{ $taxo := .taxo }}
|
|
{{ $title := .title }}
|
|
{{ if isset $context.Site.Taxonomies ( lower $taxo ) }}
|
|
{{ $taxonomy := index $context.Site.Taxonomies ( lower $taxo ) }}
|
|
{{ if (gt (len $taxonomy) 0)}}
|
|
{{ range $taxonomy }}
|
|
<li><a class="taxonomy-term" href="{{ .Page.Permalink }}" data-taxonomy-term="{{ urlize .Page.Title }}"><span class="taxonomy-label">{{ .Page.Title }}</span></a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|