wiki.trwnh.com/layouts/_default/single.html

26 lines
583 B
HTML
Raw Normal View History

2022-11-26 14:56:23 +00:00
{{ define "main" }}
<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">
<p class="toc-title">Page outline</p>
{{ .TableOfContents }}
</div>
</aside>
{{ end }}
<section class="content section">
<div class="container">
{{ .Content }}
</div>
</section>
</article>
</main>
{{ end }}