2019-12-19 17:22:12 +01:00
|
|
|
{{ define "main" }}
|
2023-12-05 00:33:41 +01:00
|
|
|
<article class="markdown book-post">
|
2019-12-19 17:22:12 +01:00
|
|
|
<h1>{{ .Title | title }}</h1>
|
|
|
|
{{ $taxonomies := index .Site.Taxonomies .Page.Type }}
|
|
|
|
{{ range $taxonomies }}
|
|
|
|
<div><a href="{{ .Page.Permalink }}">{{ .Page.Title }} <sup>{{ .Count }}</sup></a></div>
|
|
|
|
{{ end }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "toc" }}
|
|
|
|
{{ partial "docs/taxonomy" . }}
|
|
|
|
{{ end }}
|