1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-07-25 07:41:30 +00:00

add a collapsible ToC

This commit is contained in:
meleu
2022-04-03 22:12:55 -03:00
parent 1d9c0e4a44
commit a287d11246
4 changed files with 26 additions and 4 deletions

View File

@@ -15,8 +15,10 @@
<article>
{{ if (and $.Site.Data.config.enableToc (ne .Params.enableToc false)) }}
<aside class="mainTOC">
<h3>Table of Contents</h3>
{{ .TableOfContents }}
<details {{ if $.Site.Data.config.openToc }}open {{ end }}>
<summary>Table of Contents</summary>
{{ .TableOfContents }}
</details>
</aside>
{{end}}
{{partial "textprocessing.html" . }}