33 lines
849 B
HTML
33 lines
849 B
HTML
|
{{ 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 }}
|