Files
archetypes
content
static
themes
hugo-theme-ipng
archetypes
assets
data
layouts
_default
partials
shortcodes
taxonomy
list.html
terms.html
404.html
home.html
static
LICENSE.md
README.md
theme.toml
.drone.yml
.gitattributes
.gitignore
hugo.yaml
ipng.ch/themes/hugo-theme-ipng/layouts/taxonomy/terms.html
2024-08-04 21:42:06 +02:00

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