blob: f19a26fc517fd63f822e36749436cf988b26c9c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ partial "head.html" . }}
<body>
{{ partial "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>
|