taxonomies.html 633 B

12345678910111213141516
  1. {{ $context := .context }}
  2. {{ $taxo := .taxo }}
  3. {{ $class:= "" }}
  4. {{ if isset $context.Site.Taxonomies ( lower $taxo ) }}
  5. {{ $taxonomy := index $context.Site.Taxonomies ( lower $taxo ) }}
  6. {{ if (gt (len $taxonomy) 0)}}
  7. {{ range $taxonomy }}
  8. {{if eq $context.Title .Page.Title}}
  9. {{ $class = "active" }}
  10. {{else}}
  11. {{$class = ""}}
  12. {{end}}
  13. <li><a class="taxonomy-term {{ $class }}" href="{{ .Page.Permalink }}" data-taxonomy-term="{{ urlize .Page.Title }}"><span class="taxonomy-label">{{ .Page.Title }}</span></a></li>
  14. {{ end }}
  15. {{ end }}
  16. {{ end }}