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

tags.html « section « layouts - github.com/kimcc/hugo-theme-noteworthy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ff3382e0ca16544d0e81e8e5ba393f90c2e23ee (plain)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<!-- Shows all of the site's tags -->
<h1>Tags</h1>
<ul>
{{ range .Site.Taxonomies.tags }}
        <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li>
{{ end }}
</ul>
<div class="page-footer"></div>
{{end}}