19 lines
549 B
HTML
19 lines
549 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="h-full bg-gray-50">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{block "title" .}}Support{{end}}</title>
|
|
<link rel="stylesheet" href="/static/css/output.css">
|
|
</head>
|
|
<body class="h-full">
|
|
<div class="min-h-full">
|
|
{{template "nav" .}}
|
|
{{template "flash" .}}
|
|
<main class="mx-auto max-w-4xl px-4 py-8 sm:px-6 lg:px-8">
|
|
{{block "content" .}}{{end}}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|