1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/layouts/guide/single.html

15 lines
422 B
HTML
Raw Normal View History

2023-02-28 16:59:26 +00:00
{{ define "main" }}
<main class="guide">
<div class="doc">
2023-03-01 09:15:30 +00:00
<header><h1>{{ .Title }}</h1></header>
2023-02-28 16:59:26 +00:00
<section class="copy">{{ .Content }}</section>
</div>
2023-03-01 13:17:50 +00:00
<div class="toc">
<header>In this page:</header>
{{ .TableOfContents }}
</div>
2023-03-06 09:55:20 +00:00
{{ partial "menu.html" (dict "context" . "menu" $.Site.Menus.guides) }}
2023-02-28 16:59:26 +00:00
</main>
2023-03-01 13:17:50 +00:00
<script async defer src="/script/toc.js"></script>
2023-02-28 16:59:26 +00:00
{{ end }}