aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..624f3a0
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,13 @@
+{{ partial "header.html" . }}
+<div class="content">
+ {{ .Content }}
+
+ <ul>
+ {{ range .Site.RegularPages }}
+ <li>{{ .Date.Format "January 2, 2006" }}
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ partial "footer.html" . }}