Initial commit.

This commit is contained in:
Shawn O'Hare 2015-12-29 18:35:20 -08:00
commit b3a2e36507
50 changed files with 2152 additions and 0 deletions
layouts/_default

View file

@ -0,0 +1,23 @@
{{ 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>