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

25 lines
926 B
HTML

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