mirror of https://git.clsr.net/gomf-web-pomf/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.8 KiB
48 lines
1.8 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
<title>{{ .SiteName }} · 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 }} |
|
|
|
{{ if or .Files .Description }}<li class="file total" data-filename=""> |
|
<span class="file-name">{{ if .Description }}{{ .Description }}{{ else }}Done!{{ end }}</span> |
|
<span class="file-url"></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>
|
|
|