about summary refs log tree commit diff
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
index e69de29..07fbc94 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+<main>
+	{{ .Content }}
+	<ul>
+		{{ range .Pages }}
+		<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
+		{{ end }}
+	</ul>
+</main>
+{{ end }}