20 lines
677 B
Plaintext
20 lines
677 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="font-body antialiased min-h-screen flex flex-col" style="background-color: hsl(var(--background)); color: hsl(var(--foreground));">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full">
|
|
{{ slots.header|safe }}
|
|
</header>
|
|
<main class="flex-grow w-full">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="max-w-4xl mx-auto py-20 px-4 text-center" style="color: hsl(var(--muted-foreground));">
|
|
<p>This page is still resting. Add a block to begin.</p>
|
|
</div>{% endif %}
|
|
</main>
|
|
<footer class="w-full mt-auto">
|
|
{{ slots.footer|safe }}
|
|
</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|