hugo-theme-zzo/layouts/partials/taxonomy/taxonomy-categories.html

25 lines
838 B
HTML

{{ if $.Param "enableSidebarCategories" }}
<div class="taxo">
<aside>
<span class="title p2">
<a href="{{ "/categories/" | relLangURL }}" class="taxo__title">
{{ i18n "taxo-categories" }}
</a>
</span>
{{ range $index, $element := .Site.Taxonomies.categories }}
{{ if $index }}
<span class="tag">
<a href="{{ $element.Page.RelPermalink }}" class="is-categories taxo__link">
<span class="taxo__text">
{{ $element.Page.Title }}
</span>
<span class="taxo__num">
{{ printf "%#v" (len $element) }}
</span>
</a>
</span>
{{ end }}
{{ end }}
</aside>
</div>
{{ end }}