blob: 31ecd90359703694da048959631cc1845321ee26 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | {{ define "main" }}
<article class="markdown">
  <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 }}
 |