22 lines
802 B
Plaintext
22 lines
802 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 max-w-2xl mx-auto px-4 py-16">
|
|
{% if slots.main %}<article class="font-body prose max-w-none" style="line-height: 1.75; color: hsl(var(--foreground));">
|
|
{{ slots.main|safe }}
|
|
</article>{% else %}<div class="py-20 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>
|