20 lines
595 B
HTML
20 lines
595 B
HTML
{{ $toc := and ($.Site.Params.toc) (ge .WordCount $.Site.Params.tocWordCount) }} {{ if isset .Params "toc" }} {{ $toc = .Params.toc }} {{ end }} {{ if $toc }}
|
|
<details class="toc noselect">
|
|
<summary>Table of Contents</summary>
|
|
<div class="inner">{{ .TableOfContents }}</div>
|
|
</details>
|
|
{{ end }}
|
|
|
|
<script>
|
|
document.querySelector(".toc").addEventListener("click", function () {
|
|
event.preventDefault();
|
|
if (this.open) {
|
|
this.open = false;
|
|
this.classList.remove("expanded");
|
|
} else {
|
|
this.open = true;
|
|
this.classList.add("expanded");
|
|
}
|
|
});
|
|
</script>
|