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

20 lines
464 B
HTML
Raw Normal View History

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