Skip to content
Snippets Groups Projects
Select Git revision
  • 118997fa920e48acee7689fcf0cbb29d1b97ecb1
  • master default protected
  • essai-pagination
  • reorganize-stuff
4 results

list.html

Blame
  • list.html 362 B
    {{ define "main" }}
    <article class="markdown book-post">
      <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 }}