summaryrefslogtreecommitdiff
path: root/layouts/partials/single/tags.html
blob: 0c10d20010e743d5b958648295c1d2dc40503707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{- with .GetTerms "tags" }}
<section class="post__tags" aria-labelledby="tags-heading">
    <p id="tags-heading" class="post__tags-heading">
        {{ lang.Translate "tags" | default "Tags" }}
    </p>

    <ul class="post__tags-list">
        {{- range . }}
            <li class="post__tags-item">
                <a href="{{ .RelPermalink }}" class="post__tags-link" rel="tag">
                    #{{ .Title }}
                </a>
            </li>
        {{- end }}
    </ul>
</section>
{{- end }}