All checks were successful
Docker Deploy / build-and-push (push) Successful in 58s
25 lines
919 B
HTML
25 lines
919 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" />
|
|
<title>{{template "title" .}}</title>
|
|
<meta name="description" content="{{template "description" .}}">
|
|
<script defer src="https://analytics.atri.dad/script.js" data-website-id="0206740c-245f-402a-b433-125d6d48945a"></script>
|
|
{{template "head" .}}
|
|
</head>
|
|
|
|
<body class="block h-[100%]" 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 min-h-[calc(100%-64px)]">
|
|
{{template "main" .}}
|
|
</main>
|
|
<script src="/public/js/htmx.base.js"></script>
|
|
<script src="/public/js/htmx.preload.js"></script>
|
|
{{template "foot" .}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|