trwnh.com/unified.test.hugo/layouts/_default/taxonomy.html

23 lines
506 B
HTML
Raw Normal View History

2024-11-13 17:24:48 +00:00
{{ define "head" }}
{{ end }}
{{ define "body" }}
<body class="layout-_default-taxonomy">
{{ partial "site-header.html" . }}
<main id="main">
<div class="container">
<h1>{{or .Title .File.ContentBaseName}}</h1>
{{- if isset .Params "summary" }}<p>{{.Summary}}</p>{{end}}
{{- with .Data.Terms.ByCount }}
<dl>
{{- range . }}
<dt><a href="{{.Page.Permalink}}">{{.Page.Title}}</a></dt>
<dd>{{.Count}} entries</dd>
{{- end }}
</dl>
{{- end }}
</div>
</main>
{{ partial "site-footer.html" . }}
</body>
{{ end }}