about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--layouts/index.html34
1 files changed, 21 insertions, 13 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 2ea98bf..135644b 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,19 +1,27 @@
 {{ 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>
+			<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>