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

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