hugo-tufte/layouts/_default/single.html

16 lines
295 B
HTML
Raw Permalink Normal View History

2021-07-21 20:23:55 +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" }}
<article id="main">
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
2024-12-08 04:11:14 +01:00
<section>{{ partial "footer.html" . }}</section>
</article>
{{ end }}