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.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/templates/directory.html b/templates/directory.html
index c89d388..6fc35fa 100644
--- a/templates/directory.html
+++ b/templates/directory.html
@@ -1,12 +1,10 @@
-<!DOCTYPE html>
-<html lang=en>
-<meta charset=utf-8>
-<link rel=icon href=/static/favicon.svg>
+{{template "base-head.html" -}}
+<link rel=stylesheet href=/static/directory.css>
 <title>{{.Title}}</title>
 <body>
   <main>
-    <p><a href=../>../</a></p>{{range .Entries}}
-    <p><a href="./{{.}}">{{.}}</a></p>{{end}}
+    <a href=../><p>../</p></a>{{range .Entries}}
+    <a href="./{{.}}"><p>{{.}}</p></a>{{end}}
   </main>
 </body>
 </html>