blob: 6e53386601e2c7e252a729b03a984c67c378c5b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ template "theme/partials/head.html" . }}
<body class="theme-base-0b layout-reverse">
<main class="content container" role="main">
<ul class="posts">
{{ range .Data.Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
</li>
{{ end }}
</ul>
</main>
{{ template "theme/partials/sidebar.html" . }}
</body>
</html>
|