48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.Count}} files — upload.jeffemmett.com</title>
|
|
<link rel="stylesheet" href="/static/style.css?v=3">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>{{.Count}} files</h1>
|
|
<p class="subtitle">{{formatSize .TotalSize}} total</p>
|
|
|
|
<div class="batch-list">
|
|
{{range .Files}}
|
|
<div class="batch-item">
|
|
<div class="batch-preview">
|
|
{{if eq .ThumbType "image"}}
|
|
<a href="{{.ViewURL}}"><img src="{{.PreviewURL}}" alt="{{.Filename}}" class="batch-thumb"></a>
|
|
{{else if eq .ThumbType "video"}}
|
|
<video src="{{.PreviewURL}}" class="batch-thumb" preload="metadata" muted playsinline></video>
|
|
{{else}}
|
|
<div class="batch-icon">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
|
|
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"/>
|
|
<polyline points="13 2 13 9 20 9"/>
|
|
</svg>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<div class="batch-info">
|
|
<a href="/f/{{.ID}}" class="batch-filename">{{.Filename}}</a>
|
|
<span class="batch-meta">{{formatSize .Size}}</span>
|
|
</div>
|
|
<div class="batch-actions">
|
|
<a href="{{.DownloadURL}}" class="btn btn-small btn-secondary" title="Download">↓</a>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
<footer>
|
|
<a href="/">upload.jeffemmett.com</a>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|