taxonomy_terms_article.html 505 B

123456789101112
  1. {{ $context := .context -}}
  2. {{ $taxo := .taxo -}}
  3. {{ if (gt (len ($context.GetTerms $taxo)) 0) -}}
  4. <div class="taxonomy taxonomy-terms-article taxo-{{ urlize $taxo }}">
  5. <h5 class="taxonomy-title">{{ humanize $taxo }}:</h5>
  6. <ul class="taxonomy-terms">
  7. {{ range ($context.GetTerms $taxo) -}}
  8. <li><a class="taxonomy-term" href="{{ .Permalink }}" data-taxonomy-term="{{ urlize .LinkTitle }}"><span class="taxonomy-label">{{ .LinkTitle }}</span></a></li>
  9. {{ end -}}
  10. </ul>
  11. </div>
  12. {{ end -}}