2024-07-23 08:45:04 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<main class="main--single">
|
2024-07-23 08:51:03 -07:00
|
|
|
<header class="page-header">
|
|
|
|
{{ partial "page_header.html" (dict "page" .) }}
|
|
|
|
</header>
|
2024-07-23 08:57:21 -07:00
|
|
|
|
|
|
|
{{ if .Params.renderTableofContents | default false }}
|
|
|
|
<details>
|
|
|
|
<summary>{{ i18n "tableOfContents" }}</summary>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</details>
|
|
|
|
{{ end }}
|
2024-07-23 08:57:44 -07:00
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
2024-07-23 08:48:46 -07:00
|
|
|
<footer class="page-footer">
|
|
|
|
{{ partial "page/footer.html" . }}
|
|
|
|
</footer>
|
2024-07-23 08:45:04 -07:00
|
|
|
</main>
|
|
|
|
{{ end }}
|