about summary refs log tree commit diff homepage
path: root/templates/archive.html
blob: d3d8e0b01596c00f1057575dccaf57fcbde222f4 (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=stylesheet href=/static/archive.css>
<link rel=icon href=/static/favicon.svg>
<title>{{.Title}}</title>
<style>
body { margin: 0 }
img {
    display: block;
    margin: auto;
    max-width: 100%;
}
</style>

<body>{{range .Entries}}
<img src="?entry={{.Index}}" alt="{{.Name}}">{{end}}
</body>
</html>