2023-05-18 20:04:55 -06:00
|
|
|
{{define "base"}}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" data-theme="night">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" href="/public/favicon.ico" />
|
|
|
|
<title>{{template "title" .}}</title>
|
2025-01-12 14:51:43 -06:00
|
|
|
<meta name="description" content="{{template "description" .}}">
|
2023-05-18 20:04:55 -06:00
|
|
|
{{template "head" .}}
|
|
|
|
</head>
|
|
|
|
|
2024-10-30 23:50:34 -06:00
|
|
|
<body class="block h-[100%]" hx-ext="preload">
|
2023-05-18 20:04:55 -06:00
|
|
|
{{template "header" .}}
|
|
|
|
|
|
|
|
<main class="container flex flex-col items-center justify-center gap-3 sm:gap-6 p-4 text-center mx-auto min-h-[calc(100%-64px)]">
|
|
|
|
{{template "main" .}}
|
|
|
|
</main>
|
2024-10-30 23:50:34 -06:00
|
|
|
<script src="/public/js/htmx.base.js"></script>
|
|
|
|
<script src="/public/js/htmx.preload.js"></script>
|
2023-05-18 20:04:55 -06:00
|
|
|
{{template "foot" .}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|