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

tags.html « partials « layouts - gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5650056cd669ede7ac3efa349bd54b8ad5391d94 (plain)
1
2
3
4
5
6
7
8
9
10
{{ $taxonomy := "tags" }}
{{ 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 }}