hugo-tufte/layouts/_default/single.html

18 lines
364 B
HTML
Raw Normal View History

2021-07-21 20:23:55 +02:00
{{/*
This template render single pages
*/}}
2021-07-30 21:08:12 +02:00
{{ define "main" }}
<div id="layout" class="pure-g">
<article class="pure-u-1">
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
<section>{{ partial "footer.html" . }}</section>
<section>{{ partial "nav.html" . }}</section>
</article>
</div>
{{ end }}