atri.dad/pages/templates/layouts/base.html
Atridad Lahiji 57aba37be1
Some checks failed
Docker Deploy / build-and-push (push) Failing after 47s
No tailwind D:
2025-02-01 03:32:29 -06:00

27 lines
949 B
HTML

{{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" />
<link rel="stylesheet" href="/public/css/base.css" />
<link rel="stylesheet" href="/public/css/layout.css" />
<link rel="stylesheet" href="/public/css/components.css" />
<title>{{template "title" .}}</title>
<meta name="description" content="{{template "description" .}}">
{{template "head" .}}
</head>
<body class="block h-full" hx-ext="preload">
{{template "header" .}}
<main class="container flex flex-col items-center justify-center gap-3 sm:gap-6 p-4 text-center mx-auto">
{{template "main" .}}
</main>
<script src="/public/js/htmx.base.js"></script>
<script src="/public/js/htmx.preload.js"></script>
{{template "foot" .}}
</body>
</html>
{{end}}