Fileserver/templates/index.html
zervo 56ddd764ee Initial commit
Very early thrown-together but working super simple file server thingy. Just pushing now because I am switching workstation.
2025-07-30 23:06:30 +02:00

20 lines
724 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Go FileServer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
</head>
<body class="container mt-5">
<h1 class="mb-4">File Server</h1>
<ul class="list-group">
{{range .Files}}
<li class="list-group-item d-flex justify-content-between align-items-center">
{{.}}
<a href="/download/{{.}}" class="btn btn-sm btn-primary">Download</a>
</li>
{{else}}
<li class="list-group-item">No files found.</li>
{{end}}
</ul>
</body>
</html>