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

tags.html « components « article « partials « layouts - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73446cd31d012b46f00f50c623a4cafadf8c0199 (plain)
1
2
3
4
5
6
7
8
9
10
{{- $tags := .Params.Tags -}}
{{ if $tags }}
    <section class="article-tags">
        {{ range $tag := $tags }}
            {{ with $.Site.GetPage (printf "/tags/%s" $tag) }}
                <a href="{{ .Permalink }}">{{ .Title | humanize }}</a>
            {{ end }}
        {{ end }}
    </section>
{{ end }}