dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_hugo-coder
mirror of
https://github.com/luizdepra/hugo-coder.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
feature to fix issue #288 (#289)
Clément Pannetier
02.12.2020
5a10cb7e6c4c3036b4cc87806a7242d78fdca45d
[external-software/github_gohugo_theme_hugo-coder.git]
/
layouts
/
partials
/
taxonomy
/
categories.html
1
2
3
4
5
6
7
8
9
<div class="categories">
<i class="fas fa-folder"></i>
{{- range $index, $el := . -}}
{{- if gt $index 0 }}
<span class="separator">•</span>
{{- end }}
<a href="{{ ( printf "categories/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
{{- end -}}
</div>