mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* Taxonomy initial commit, tags and categories * WIP: Show in footer for comparison * Fix post meta
10 lines
277 B
HTML
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>
|