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

tags.html « _default « layouts - github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4618ae3874acaf8877dbfc5c2ddc1d3a4dc6b885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ if and $.Site.Params.posts.showTags .Params.Tags }}
<ul class="tags">
    {{ range .Params.Tags }}
    {{ $url := printf "%stags/%s/" $.Site.BaseURL . }}
    <li class="tags__tag">
        <a href="{{ $url }}" class="tag__link" alt="{{ . }}.">
            #{{ . }}
        </a>
    </li>
    {{ end }}
</ul>
{{ end }}