hugo-tufte/layouts/_default/single.html
slashformotion 07a755cafb chores
2021-07-30 21:08:12 +02:00

19 lines
No EOL
372 B
HTML

{{/*
This template render single pages
*/}}
{{ define "main" }}
<div id="layout" class="pure-g">
<article class="pure-u-1">
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
<section>
{{ partial "footer.html" . }}
</section>
</article>
</div>
{{ end }}