tijl.dev-core/views/layouts/base.html
tijl e505f46726
Some checks failed
build / build (push) Failing after 0s
add htmx
2024-08-21 11:33:33 +02:00

24 lines
633 B
HTML

<!doctype html>
<html lang='{{.Language}}'>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/static/css/styles.css" />
<link rel="icon" href="/static/assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#f28c18" />
<script type="module" defer src="/static/js/interactive.js"></script>
<title>{{.Title}}</title>
</head>
<body class="lg:max-w-[80%] xl:max-w-[75%] mx-auto">
<header>
{{template "partials/menu" .}}
</header>
<main class="mx-8 pt-24">
{{embed}}
</main>
</body>
</html>