Welcome to mirror list, hosted at ThFree Co, Russian Federation.

categories.html « partials « layouts - gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 933b6314ecb0ab4fd22e891948db284036c38a3e (plain)
1
2
3
4
5
6
7
8
9
10
{{ $taxonomy := "categories" }}
{{ with .Param $taxonomy }}
{{ range $index, $tag := . }}
{{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
<li>
    <a href="{{ .Permalink }}">{{ $tag | urlize }}</a>
</li>
{{- end -}}
{{- end -}}
{{ end }}