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

23
layouts/index.html Normal file
View file

@ -0,0 +1,23 @@
{{ partial "header.html" . }}
{{ partial "math.html" . }}
<body>
<article>
{{ partial "brand.html" . }}
{{ range first 5 .Site.Pages }}
<section class="post-summary">
{{ partial "content.header.html" . }}
<p>{{ .Summary }}</p>
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Read On &rarr;</a>
{{ end }}
</section>
{{ end }}
{{ partial "footer.html" . }}
</div>
{{ partial "body.includes.html" . }}
</article>
</body>
</html>