Files
lenz-web/templates/layouts/layout.gohtml
Simon Martens d7f7571470 more stuff
2026-03-04 16:39:47 +01:00

16 lines
445 B
Plaintext

{{ define "layout" }}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ block "title" . }}Default{{ end }}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.css">
<link rel="stylesheet" href="/public/style.css">
</head>
<body>
{{ block "body" . }}{{ end }}
</body>
</html>
{{ end }}