mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 19:39:30 +00:00
21 lines
422 B
HTML
21 lines
422 B
HTML
|
<aside class="book-toc fixed">
|
||
|
<nav>
|
||
|
<ul>
|
||
|
{{ range $term, $_ := .Site.Taxonomies }}
|
||
|
{{ with $.Site.GetPage (printf "/%s" $term) }}
|
||
|
<li class="book-section-flat">
|
||
|
<strong>{{ .Title | title }}</strong>
|
||
|
<ul>
|
||
|
{{ range .Pages }}
|
||
|
<li>
|
||
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</aside>
|