websiteOwn/layouts/partials/taxonomy/categories.html

10 lines
280 B
HTML
Raw Normal View History

2019-09-20 07:51:22 +02:00
<div class="categories">
2019-12-12 14:13:41 +01:00
<i class="fa fa-folder"></i>
2019-09-20 07:51:22 +02:00
{{- range $index, $el := . -}}
{{- if gt $index 0 }}
<span class="separator"></span>
{{- end }}
<a href="{{ ( printf "categories/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
{{- end -}}
</div>