14 lines
599 B
Plaintext
14 lines
599 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">{{ slots.header|safe }}</header>
|
|
<main class="flex-grow max-w-5xl mx-auto w-full px-4 py-8">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="py-20 text-center coffee-body text-muted-foreground italic"><p>Pour something in here.</p></div>{% endif %}
|
|
</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|