26 lines
867 B
HTML
26 lines
867 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>
|
|
<script type="module">
|
|
if (document.querySelector('pre.mermaid')) {
|
|
const { default: mermaid } = await import('https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs');
|
|
mermaid.initialize({ startOnLoad: false, theme: 'default' });
|
|
await mermaid.run();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|