pollo/pages/templates/layouts/base.html

33 lines
1 KiB
HTML
Raw Permalink Normal View History

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>
<meta name="description" content="Just here for the vibes...">
{{template "head" .}}
</head>
<body class="block h-[100%]">
{{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)]">
2024-07-09 11:59:06 -06:00
{{if .Error.Code}}
<h1 class="text-3xl sm:text-6xl font-bold">
<span class="bg-gradient-to-r from-primary via-accent to-secondary bg-clip-text text-transparent box-decoration-clone">
Error {{.Error.Code}}
</span>
</h1>
<h2 class="my-4 text-xl sm:text-3xl font-bold">
{{.Error.Message}}
</h2>
{{else}}
2023-05-18 20:04:55 -06:00
{{template "main" .}}
2024-07-09 11:59:06 -06:00
{{end}}
2023-05-18 20:04:55 -06:00
</main>
{{template "foot" .}}
</body>
</html>
{{end}}