about summary refs log tree commit diff homepage
path: root/templates/archive.html
blob: c0cc1443d11cdd02cc6993b9bf44596801d31d60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<link rel=icon href=/static/favicon.svg>
<link rel=stylesheet href=/static/archive.css>
<title>{{.Title}}</title>
<body>
  <nav>
    <a id=prev href="{{.Prev}}">PREV</a>
    <a id=up href=.>UP</a>
    <a id=next href="{{.Next}}">NEXT</a>
  </nav>
  <main>{{range .Entries}}
    <img src="?entry={{.Index}}" alt="{{.Name}}">{{end}}
  </main>
</body>
</html>