-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tmpl.html
executable file
·49 lines (42 loc) · 1.22 KB
/
index.tmpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Zephyr Photo Wall</title>
<link rel="stylesheet" href="/static/watercss.dark.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A place for memories to be stored until the day the zephyrnet harddrives rust.">
<style>
.grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 5px;
}
article a div {
border-radius: 10px;
height: 250px;
width: 250px;
background-size: cover;
display: block;
}
</style>
</head>
<body>
<h1>Zephyr Photo Wall</h1>
<form enctype="multipart/form-data" action="/upload" method="post">
<input type="file" name="photo" />
<input type="submit" value="upload" />
</form>
<h2>Uploaded Photos</h2>
<div class="grid">
{{range .Photos}}
<article>
<a target="_blank" href="{{ . }}">
<div style="background-image: url('{{ . }}');"></div>
</a>
</article>
{{end}}
</div>
<p>~ built by zrl, kognise, and arc for the hacker zephyr ~</p>
</body>
</html>