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

github.com/gevhaz/hugo-theme-notrack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/themes/notrack/layouts/taxonomy/terms.html')
-rw-r--r--exampleSite/themes/notrack/layouts/taxonomy/terms.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/exampleSite/themes/notrack/layouts/taxonomy/terms.html b/exampleSite/themes/notrack/layouts/taxonomy/terms.html
new file mode 100644
index 0000000..e7974b7
--- /dev/null
+++ b/exampleSite/themes/notrack/layouts/taxonomy/terms.html
@@ -0,0 +1,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 }}