Joshua M. Boniface 66de2fc35a Revert "Fixed /post to /blog"
This reverts commit 0280376150e57ac87dc39176de905f6a6a792971.
2016-11-19 01:13:27 -05:00

25 lines
800 B
HTML

{{ partial "head.html" . }}
<body>
{{ partial "sidebar.html" . }}
<div class="content-wrapper">
<div class="content-wrapper__inner">
<section id="main">
<div>
{{ range first 10 .Data.Pages }}
{{ if eq .Type "post" }}
{{ .Render "summary"}}
{{ end }}
{{ end }}
</div>
</br>
<h4>
<a href="{{ .Site.BaseURL }}/post/">Archive</a>
</h4>
</section>
</div>
</div>
{{ partial "footer.html" .}}
{{ partial "script.html" .}}
</body>
</html>