26 lines
570 B
HTML
26 lines
570 B
HTML
{{ define "main" }}
|
|
{{ partial "article-header.html" . }}
|
|
<main>
|
|
<article>
|
|
{{ .Content }}
|
|
|
|
<section>
|
|
<header><h2>Taxonomies</h2></header>
|
|
<ul>
|
|
{{- range $taxonomy, $terms := .Site.Taxonomies -}}
|
|
{{- with $.Site.GetPage $taxonomy -}}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
<sub>{{ len $terms }}</sub>
|
|
</li>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</section>
|
|
|
|
{{ partial "article-footer.html" . }}
|
|
</article>
|
|
{{ partial "asides/toc.html" . }}
|
|
</main>
|
|
{{ end }}
|