hugo-theme-termlite/layouts/_default/single.html
Eryn Wells 4d303b984e Add a table of contents to the single template
Pages can show the table of contents by setting the renderTableOfContents parameter.
2024-07-23 08:57:21 -07:00

17 lines
454 B
HTML

{{ define "main" }}
<main class="main--single">
<header class="page-header">
{{ partial "page_header.html" (dict "page" .) }}
</header>
{{ if .Params.renderTableofContents | default false }}
<details>
<summary>{{ i18n "tableOfContents" }}</summary>
{{ .TableOfContents }}
</details>
{{ end }}
<footer class="page-footer">
{{ partial "page/footer.html" . }}
</footer>
</main>
{{ end }}