blob: 4de304391485a7e4f5d13857e0ca53a60f73a6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ template "theme/partials/head.html" . }}
<body class="theme-base-0b">
{{ template "theme/partials/sidebar.html" . }}
<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>
</html>
|