Upload files to "frontend/components"
This commit is contained in:
parent
e6824ac5b2
commit
317cf34156
5 changed files with 99 additions and 0 deletions
17
frontend/components/Layout.html
Normal file
17
frontend/components/Layout.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue