21 lines
872 B
Plaintext
21 lines
872 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="bg-background text-foreground antialiased min-h-screen flex flex-col font-sans">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full mb-hairline-bottom">
|
|
<div class="max-w-6xl mx-auto px-6">{{ slots.masthead|safe }}</div>
|
|
</header>
|
|
<section class="w-full">
|
|
<div class="max-w-6xl mx-auto px-6 py-10">{{ slots.deck|safe }}</div>
|
|
</section>
|
|
<main class="flex-grow w-full">
|
|
<div class="max-w-4xl mx-auto px-6 py-12">{% if slots.main %}<article class="mb-body">{{ slots.main|safe }}</article>{% else %}<div class="py-20 text-center font-mono mb-caption">No content blocks assigned to this page.</div>{% endif %}</div>
|
|
</main>
|
|
<footer class="w-full mt-auto mb-hairline-top">
|
|
<div class="max-w-6xl mx-auto px-6">{{ slots.colophon|safe }}</div>
|
|
</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|