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

terms.html « taxonomy « layouts « notrack « themes « exampleSite - github.com/gevhaz/hugo-theme-notrack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7974b7482e4340df276c5598bdc0afd0350636c (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
<main>
    <h1>All {{ .Title }}</h1>

    <ul>
        {{ range .Data.Terms.Alphabetical }}
                <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})</li>
        {{ end }}
    </ul>
</main>
{{ end }}