summaryrefslogtreecommitdiffstats
path: root/pages/index.html
blob: f7d9f518721be742e312f94779e71e335fad44ca (plain)
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
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>{{ .SiteName }} &middot; Kawaii File Hosting</title>
		<link rel="icon" href="favicon.ico">
		<link rel="stylesheet" href="/static/pomf.css">
		<script src="/static/pomf.js"></script>
	</head>
	<body>
		<div class="container">
			<div class="jumbotron">
				<h1>Ohayou!</h1>
				<p class="lead">Max upload size is {{ .MaxSize }}, read the <a href="faq.html">FAQ</a></p>

				<form id="upload-form" enctype="multipart/form-data" method="post" action="upload.php?output=html">
					<button style="display: none" id="upload-btn" class="btn" type="button">Select or drop file(s)</button>
					<input type="file" id="upload-input" name="files[]" multiple data-max-size="{{ .MaxSize }}">
					<input type="submit" value="Submit">
				</form>

				{{ with .Result }}<ul id="upload-filelist" {{ if or .Files .Description }}class="{{ if .Description }}error {{ else }}completed{{ end }}"{{ end }}>
					{{ range .Files }}<li class="file" data-filename="{{ .Name }}">
						<span class="file-name">{{ .Name }}</span>
						<span class="file-url"><a href="{{ .Url }}" target="_blank">{{ .Url }}</a></span>
					</li>{{ end }}
				</ul>{{ end }}

			</div>

			<nav>
				<ul>
					<li><a href="/">{{ .SiteName }}</a></li>
					<li><a href="mailto:{{ .Contact }}">Contact</a></li>
					<li><a href="mailto:{{ .Abuse }}">Report abuse</a></li>
					{{ range $name, $path := .Pages }}{{ if ne $path "index.html" }}<li><a href="{{ $path }}">{{ $name }}</a></li>{{ end }}{{ end }}
				</ul>
			</nav>
		</div>
	</body>
</html>