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

list.html « tag « layouts - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ae303d84651ebaf12e2910f243cf6c9dc73711a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
    <div class="pl-sm-4 ml-sm-5">
        <h4>Tags</h4>
        <ul class="list-unstyled">
            {{ range $.Site.Taxonomies.tags.ByCount }}
            <li>
                {{ .Count }} Articles - <a href="/tags{{ .Name | relURL }}">{{ .Name }}</a>
            </li>
            {{ end }}
        </ul>
    </div>
{{ end }}