erynwells.me/layouts/partials/table_of_contents.html
Eryn Wells f21ac49b08 Add a table of contents
Create a new table_of_contents partial that includes an auto-generated table of contents if the word
count is over 400 and the "toc" page variable has been set true.
2023-04-23 22:11:47 +09:00

8 lines
170 B
HTML

{{ if and (gt .WordCount 400) .Params.toc }}
<aside>
<details open>
<summary>Table of Contents</summary>
{{ .TableOfContents }}
</details>
</aside>
{{ end }}