summaryrefslogtreecommitdiff
path: root/themes/hugo-coder/layouts/partials/taxonomy/categories.html
blob: b592f4e83b86e5eda2d082ea7bd4bc25cfec90b0 (plain)
1
2
3
4
5
6
7
8
9
<div class="categories">
  <i class="fa fa-folder" aria-hidden="true"></i>
  {{- range $index, $el := . -}}
    {{- if gt $index 0 }}
      <span class="separator"></span>
    {{- end }}
    <a href="{{ ( printf "categories/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
  {{- end -}}
</div>