2014-09-03 18:47:06 -06:00
|
|
|
{{ partial "head.html" . }}
|
2014-04-26 16:25:13 -06:00
|
|
|
<body>
|
|
|
|
|
2014-09-03 18:47:06 -06:00
|
|
|
{{ partial "sidebar.html" . }}
|
2014-04-26 16:25:13 -06:00
|
|
|
|
2014-08-23 22:46:02 -07:00
|
|
|
<div class="content container">
|
|
|
|
<ul class="posts">
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
<li>
|
|
|
|
<span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</body>
|
2014-04-26 16:25:13 -06:00
|
|
|
</html>
|