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

27 lines
No EOL
893 B
HTML

<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css " rel="stylesheet">
<title>{{.ServerName}}</title>
<style>
html, body {
height: 100%;
}
</style>
</head>
<body class="d-flex flex-column min-vh-100">
<main class="flex-grow-1 d-flex justify-content-center">
<div class="container text-center">
{{ yield . }}
</div>
</main>
{{ render "partials/footer.html" . }}
</footer>
</body>
</html>