23 lines
No EOL
506 B
HTML
23 lines
No EOL
506 B
HTML
{{ 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 }} |