Files
hugo-coder-timeline/layouts/partials/taxonomy/categories.html
Khosrow Moossavi fd3ec89897 Taxonomy initial commit, tags and categories (#90)
* Taxonomy initial commit, tags and categories

* WIP: Show in footer for comparison

* Fix post meta
2018-10-27 09:43:26 -03:00

10 lines
277 B
HTML

<div class="categories">
<i class="fas fa-folder"></i>
{{- range $index, $el := . -}}
{{- if gt $index 0 }}
<span class="separator"></span>
{{- end }}
<a href="{{ ( print "categories/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
{{- end -}}
</div>