6 lines
222 B
HTML
6 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 }}
|