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