33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
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-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
{{block "content" .}}{{end}}
|
|
</main>
|
|
</div>
|
|
<span class="hidden ring-blue-400 bg-blue-50 border-blue-400 hover:text-red-500"></span>
|
|
<script>
|
|
if (document.querySelector('pre.mermaid')) {
|
|
var s = document.createElement('script');
|
|
s.src = 'https://cdn.jsdelivr.net/npm/mermaid@11.4.1/dist/mermaid.min.js';
|
|
s.integrity = 'sha384-rbtjAdnIQE/aQJGEgXrVUlMibdfTSa4PQju4HDhN3sR2PmaKFzhEafuePsl9H/9I';
|
|
s.crossOrigin = 'anonymous';
|
|
s.onload = function() {
|
|
mermaid.initialize({ startOnLoad: false, theme: 'default' });
|
|
mermaid.run();
|
|
};
|
|
document.body.appendChild(s);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|