about summary refs log tree commit diff stats
path: root/layouts/index.html
blob: 135644b2ac0d78730a94f6d765808755a8b8d61e (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
27
28
{{ template "theme/partials/head.html" . }}
	<body class="theme-base-0b layout-reverse">
		<main class="content container" role="main">
			<section class="categories">
				<h2>Categories</h2>
				<ul>
					{{ range $key, $value := .Site.Indexes.categories }}
					<li>
						<a href="/categories/{{ $key | urlize }}">{{ $key | title }}</a>
					</li>
					{{ end }}
				</ul>
			</section>
			<section class="recent">
				<h2>Recent Posts</h2>
				<ul>
					{{ range .Data.Pages }}
					<li>
						<a class="post-title" href="{{ .Permalink }}">{{ .Title }}</a>
						<time class="post-date">{{ .Date.Format "Monday, 2 January 2006" }}</time>
					</li>
					{{ end }}
				</ul>
			</section>
		</main>
{{ template "theme/partials/sidebar.html" . }}
	</body>
</html>