about summary refs log tree commit diff stats
path: root/layouts/index.html
blob: dbc05c675fd1bb7f10585468bc5ad2ad626973e8 (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>
{{ 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>
		</div>
	</body>
</html>