htmx/frontend/components/Layout.html
2026-04-01 21:13:58 +02:00

17 lines
589 B
HTML

<!DOCTYPE html>
<html lang="fr" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
</head>
<body class="bg-base-200 min-h-screen">
<Navbar active_tab="{{ active_tab }}" />
<div class="container mx-auto px-4 mt-6 max-w-7xl pb-10">
{{ content }}
</div>
</body>
</html>