hugo-tufte/layouts/index.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
391 B
HTML

{{ partial "header.html" . }}
<body>
<div id="layout" class="pure-g">
<article class="pure-u-1">
{{ partial "brand.html" . }}
{{ range first 5 .Site.Pages }}
{{ partial "content.header.html" . }}
<p>{{ .Summary }}</p>
{{ if .Truncated }}
<p><a href="{{ .RelPermalink }}">Read On &rarr;</a></p>
{{ end }}
{{ end }}
{{ partial "footer.html" . }}
</article>
</div>
</body>
</html>