hugo-book-theme/layouts/partials/docs/taxonomy.html

19 lines
395 B
HTML
Raw Normal View History

2019-12-19 17:22:12 +01:00
<nav>
<ul>
{{ range $term, $_ := .Site.Taxonomies }}
2020-01-17 21:31:26 +01:00
{{ with $.Site.GetPage (printf "/%s" $term | urlize) }}
2019-12-19 17:22:12 +01:00
<li class="book-section-flat">
<strong>{{ .Title | title }}</strong>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</li>
2020-01-17 21:31:26 +01:00
{{ end }}
2019-12-19 17:22:12 +01:00
{{ end }}
</ul>
</nav>