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

tags.html « extra « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a53fea9ad0aa4053b701275eae2cf2168cdc4f0e (plain)
1
2
3
4
5
6
7
8
9
10
{{ $baseUrl := .Site.BaseURL }}
<ul class="tags">
    <li>
        <i class="fa fa-tags"></i>
    </li>
    {{ range .Params.tags }}
        <li><a href="{{ $baseUrl }}tags/{{ . | urlize }}">{{ . }}</a></li>
    {{ end }}
</ul>