trwnh.com/unified.test.hugo/layouts/wiki/single.html
2024-10-05 14:56:14 -05:00

33 lines
No EOL
856 B
HTML

{{ define "body" }}
<body class="wiki layout-wiki-single">
{{ $currentFolderName := or $.File.ContentBaseName "index" }}
{{ partial "wiki/site-header.html" .}}
{{ partial "wiki/breadcrumbs.html" .}}
<main>
<article class="page" {{- if .Param "autonumbering" }} autonumbering {{- end }}>
{{ with .Title}}
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ . }}</h1>
</div>
</header>
{{ end }}
{{ if .Params.toc }}
<aside class="toc section">
<div class="container">
<details open>
<summary class="toc-title">Contents</summary>
{{ .TableOfContents }}
</details>
</div>
</aside>
{{ end }}
<section class="content section">
<div class="container hugo-content">
{{ .Content }}
</div>
</section>
</article>
</main>
</body>
{{ end }}