Files
archetypes
content
static
themes
hugo-theme-notrack
archetypes
data
images
layouts
_default
partials
shortcodes
taxonomy
list.html
terms.html
404.html
home.html
static
.gitignore
LICENSE.md
README.md
theme.toml
.drone.yml
.gitattributes
.gitignore
config.toml
2022roadtripnose/themes/hugo-theme-notrack/layouts/taxonomy/terms.html

12 lines
252 B
HTML

{{ 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 }}