2016-08-22 00:12:29 -04:00
|
|
|
{{ 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>
|
2016-11-19 01:13:27 -05:00
|
|
|
<a href="{{ .Site.BaseURL }}/post/">Archive</a>
|
2016-08-22 00:12:29 -04:00
|
|
|
</h4>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ partial "footer.html" .}}
|
|
|
|
{{ partial "script.html" .}}
|
|
|
|
</body>
|
|
|
|
</html>
|