about summary refs log tree commit diff homepage
path: root/templates/directory.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/directory.html')
-rw-r--r--templates/directory.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/directory.html b/templates/directory.html
new file mode 100644
index 0000000..c89d388
--- /dev/null
+++ b/templates/directory.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang=en>
+<meta charset=utf-8>
+<link rel=icon href=/static/favicon.svg>
+<title>{{.Title}}</title>
+<body>
+  <main>
+    <p><a href=../>../</a></p>{{range .Entries}}
+    <p><a href="./{{.}}">{{.}}</a></p>{{end}}
+  </main>
+</body>
+</html>