hugo-tufte/layouts/_default/single.html
Shawn O'Hare 82958f2609 v0.1.0
Theme should be useable, but there might be some minor stylistic tweaks
here and there.
2016-01-14 21:02:57 -08:00

17 lines
345 B
HTML

{{ partial "header.html" . }}
<body>
<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 "disqus.html" . }}
{{ partial "footer.html" . }}
</section>
</article>
</div>
</body>
</html>