aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/edwin/layouts/partials/taxonomies.html
blob: 778611ba6c31c90644f97cb92e5f69b3689879d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<section>
    {{ range $taxonomyname, $taxonomy := .Site.Taxonomies }}
        {{ if gt (len $taxonomy) 0 }}
        <h4>{{ i18n $taxonomyname }}</h4>
        <p>
            {{ range $name, $value := $taxonomy }}
            <a class="badge badge-primary" href="{{ printf "/%s/" $taxonomyname | relLangURL }}{{ $name | urlize }}/">{{ $name }}</a>
            {{ end }}
        </p>
        {{ end }}
    {{ end }}
</section>