forked from mirrors/hugo-tufte
24 lines
507 B
HTML
24 lines
507 B
HTML
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<body>
|
||
|
<div id="layout" class="pure-g">
|
||
|
<div class="content content-column pure-u-1 pure-u-md-4-5">
|
||
|
{{ partial "brand.html" . }}
|
||
|
{{ partial "content.header.html" . }}
|
||
|
{{ if .Params.toc }}
|
||
|
<div class="toc">
|
||
|
<h1>Contents</h1>
|
||
|
{{ .TableOfContents }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ .Content }}
|
||
|
|
||
|
{{ partial "disqus.html" . }}
|
||
|
{{ partial "footer.html" . }}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{ partial "body.includes.html" . }}
|
||
|
</body>
|
||
|
</html>
|