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