2021-07-21 20:23:55 +02:00
|
|
|
{{/*
|
|
|
|
|
2024-09-27 15:36:01 +02:00
|
|
|
This template render single pages
|
2021-07-21 20:23:55 +02:00
|
|
|
|
|
|
|
*/}}
|
|
|
|
|
2021-07-30 21:08:12 +02:00
|
|
|
{{ define "main" }}
|
2023-04-15 16:32:38 +02:00
|
|
|
<article id="main">
|
2024-09-27 15:36:01 +02:00
|
|
|
{{ partial "brand.html" . }}
|
2023-04-15 02:37:37 +02:00
|
|
|
{{ partial "content.header.html" . }}
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
<section>{{ .Content }}</section>
|
|
|
|
<section>{{ partial "footer.html" . }}</section>
|
|
|
|
<section>{{ partial "nav.html" . }}</section>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|