hugo-book/layouts/partials/docs/toc.html
2018-11-25 13:30:25 +01:00

7 lines
222 B
HTML

{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
{{ if and ($showToC) (.Page.TableOfContents) }}
<aside class="book-toc fixed">
{{ .Page.TableOfContents }}
</aside>
{{ end }}