about summary refs log tree commit diff homepage
path: root/templates/archive.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/archive.html')
-rw-r--r--templates/archive.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/templates/archive.html b/templates/archive.html
deleted file mode 100644
index 619a5bc..0000000
--- a/templates/archive.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{{template "base-head.html" -}}
-<link rel=stylesheet href=/static/archive.css>
-<title>{{.Title}}</title>
-<body>
-  <nav>{{if .Prev}}
-    <a id=prev href="{{.Prev | escape}}">PREV</a>{{else}}
-    <a id=prev></a>{{end}}
-    <a id=up href=.>UP</a>{{if .Next}}
-    <a id=next href="{{.Next | escape}}">NEXT</a>{{else}}
-    <a id=next></a>{{end}}
-  </nav>
-  <main>{{range .Entries}}
-    <img src="?entry={{.Index}}" alt="{{.Name}}">{{end}}
-  </main>
-{{template "base-foot.html" -}}