2014-09-04 03:47:06 +03:00
|
|
|
{{ partial "head.html" . }}
|
2014-04-27 01:25:13 +03:00
|
|
|
<body>
|
|
|
|
|
2014-09-04 03:47:06 +03:00
|
|
|
{{ partial "sidebar.html" . }}
|
2014-04-27 01:25:13 +03:00
|
|
|
|
2014-08-24 08:46:02 +03: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-27 01:25:13 +03:00
|
|
|
</html>
|