trwnh.com/unified.test.hugo/layouts/wiki/single.html

33 lines
849 B
HTML
Raw Normal View History

2024-10-05 06:27:07 +00:00
{{ define "body" }}
<body class="wiki 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 }}