blob: 320b97512f92ecb5b08fcd2b8ce2266a3305f348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{{ template "theme/partials/head.html" . }}
<body>
{{ template "theme/partials/sidebar.html" . }}
<div class="content container">
<div class="posts">
{{ range .Data.Pages }}
<div class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
{{ end }}
</div>
</body>
</html>
|