Files
kgpz_web/views/layouts/default/root.tmpl
Simon Martens dafa217003 added views
2024-11-10 00:04:37 +01:00

28 lines
692 B
Cheetah

<!doctype html>
<html class="w-full h-full" lang="de">
<head>
{{ block "head" . }}
<!-- Default Head elements -->
{{ end }}
<link rel="stylesheet" type="text/css" href="/assets/style.css" />
<link href="/assets/css/remixicon.css" rel="stylesheet" />
<script src="/assets/js/alpine.min.js" defer></script>
<script src="/assets/js/htmx.min.js" defer></script>
<script src="/assets/js/htmx-response-targets.js" defer></script>
<script type="module">
import { setup } from "/assets/scripts.js";
setup();
</script>
</head>
<body class="w-full h-full" hx-ext="response-targets">
{{ block "body" . }}
<!-- Default app body... -->
{{ end }}
</body>
</html>