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

terms.html « _default « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7811b8e4642b4fdb5ea5213a46fada6fc1bf504b (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
    <div class="container">
        <div class="section tags-list">
            {{- range $key, $value:= .Data.Terms -}}
            <a class="tag-cloud" href="{{ "/" | relLangURL }}{{ $.Data.Plural | urlize }}/{{ $key | urlize }}">{{ $key }}&nbsp;({{ $value.Count }})</a>
            {{- end -}}
        </div>
    </div>
{{ end }}