您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

toc.html 222B

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