16 lines
720 B
Plaintext
16 lines
720 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="coffee-paper coffee-body bg-background text-foreground antialiased min-h-screen flex flex-col">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full">
|
|
<div class="max-w-3xl mx-auto px-4">{{ slots.header|safe }}</div>
|
|
</header>
|
|
<main class="flex-grow max-w-2xl mx-auto w-full px-4 py-12 coffee-dropcap">
|
|
{% if slots.main %}<article class="prose prose-lg max-w-none">{{ slots.main|safe }}</article>{% else %}<div class="py-20 text-center coffee-body text-muted-foreground italic"><p>Write something honest here.</p></div>{% endif %}
|
|
</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|