blob: 2ea98bffcda4bc40c08dd12d31dd5a272574f8d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ template "theme/partials/head.html" . }}
<body class="theme-base-0b layout-reverse">
<main class="content container" role="main">
<div class="posts">
{{ range .Data.Pages }}
<article class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h1>
<time class="post-date">{{ .Date.Format "Monday, 2 January 2006" }}</time>
{{ .Content }}
</article>
{{ end }}
</div>
</main>
{{ template "theme/partials/sidebar.html" . }}
</body>
</html>
|