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
12 lines
252 B
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 }}
|