Fileserver/templates/directories.html
zervo cbc66c5651 Updates
A bunch of updatesss
2025-07-31 05:19:15 +02:00

23 lines
No EOL
988 B
HTML

<!DOCTYPE html>
<html>
<body class="ma-6">
<h4 class="mt-4 mb-3">Welcome To</h4>
{{ render "partials/badge.html" . }}
<h3 class="p-3 mb-3">Select Directory</h3>
<div class="d-flex flex-column align-items-center gap-4 mb-3">
{{range .Page.Directories}}
<div class="card shadow w-100 text-start bg-dark-subtle" style="max-width: 500px;">
<div class="card-body">
<h5 class="card-title text-primary"><i class="bi bi-folder2-open me-2"></i>{{.DisplayName}}</h5>
<p class="card-text">{{.Description}}</p>
<a href="/b/{{.Id}}" class="btn btn-primary"><i class="bi bi-arrow-up-right-square-fill me-1"></i>Open</a>
</div>
</div>
{{else}}
<h5 class="text-warning-emphasis">
No directories found.<br>If you are the administrator of this server,<br>you can add directories in the server configuration.
</h5>
{{end}}
</div>
</body>
</html>