about summary refs log tree commit diff homepage
path: root/templates/archive.html
blob: 3b20ae9284aed4afde7fc0ce5abd516e112d689f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>{{if .Prev}}
    <a id=prev href="{{.Prev}}">PREV</a>{{else}}
    <a id=prev></a>{{end}}
    <a id=up href=.>UP</a>{{if .Next}}
    <a id=next href="{{.Next}}">NEXT</a>{{else}}
    <a id=next></a>{{end}}
  </nav>
  <main>{{range .Entries}}
    <img src="?entry={{.Index}}" alt="{{.Name}}">{{end}}
  </main>
</body>
</html>