sadium/layouts/_default/single.html

18 lines
222 B
HTML
Raw Normal View History

2023-12-13 21:47:26 +03:00
{{ define "main" }}
<main>
<article>
2023-12-13 21:47:26 +03:00
<header>
<h1>{{ .Title }}</h1>
</header>
2023-12-13 21:47:26 +03:00
<aside>
{{ .TableOfContents }}
</aside>
{{ .Content }}
</article>
2023-12-13 21:47:26 +03:00
</main>
{{ end }}