tijl.dev-core/views/layouts/base.html
tijl e6d6ba4041
Some checks failed
build / build (push) Failing after 0s
updates
2024-08-20 18:25:59 +02:00

23 lines
558 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" />
<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>