theme/layouts/_default/baseof.html
kolaente 00052c9056
All checks were successful
continuous-integration/drone/push Build is passing
chore: format
2022-12-23 16:35:30 +01:00

17 lines
265 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ partial "header.html" . }}
</head>
<body class="bg-gray-50 font-sans text-gray-900 antialiased">
{{ partial "navbar.html" . }}
{{ block "main" . }}
{{ end }}
{{ partial "footer.html" . }}
</body>
</html>