forked from mirrors/hugo-tufte
16 lines
345 B
HTML
16 lines
345 B
HTML
{{/*
|
|
|
|
This template render single pages
|
|
|
|
*/}}
|
|
|
|
{{ define "main" }}
|
|
<article id="main">
|
|
{{ partial "brand.html" . }}
|
|
{{ partial "content.header.html" . }}
|
|
{{ partial "toc.html" . }}
|
|
<section>{{ .Content }}</section>
|
|
<section>{{ partial "footer.html" . }}</section>
|
|
<section>{{ partial "nav.html" . }}</section>
|
|
</article>
|
|
{{ end }}
|