blob: 017c932a8efb49f18e5b08131a882c3f18513236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ template "theme/chrome/head.html" . }}
<body>
{{ template "theme/chrome/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" }}</h4></time></span></span></li>
{{ end }}
</ul>
</div>
</body>
</html>
|