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

terms.html « _default « layouts - github.com/spaghettiwews/hugonews.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aac736d3569e112b76ba28a04c1792df7176d8bc (plain)
1
2
3
4
5
6
7
8
9
{{ partial "header.html" . }}
<ol>
    {{ range $key, $value := .Data.Terms.ByCount }}
    <li class="item">
        <p class="item__urls"><a href="{{ $value.Name | urlize }}">{{ $value.Name }}</a><span class="item__count">({{ $value.Count }})</span></p>
    </li>
    {{ end }}
</ol>
{{ partial "footer.html" . }}