aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..38c3c81
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+<h1>{{ .Site.Params.indexTitle }}</h1>
+<p>{{ .Site.Params.indexIntro }}</p>
+<h2>Navigation Links</h2>
+<nav>
+ <p>
+ {{- range .Site.Menus.main }}
+ <a href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a><br>
+ {{- end }}
+ </p>
+</nav>
+<h2>Journal Entries</h2>
+{{ partial "metadata.html" . }}
+{{ end }}