18 lines
702 B
Plaintext
18 lines
702 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>
|
|
<main class="flex-grow w-full">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="max-w-4xl mx-auto py-20 px-6 text-center font-mono mb-caption">No content blocks assigned to this page.</div>{% endif %}
|
|
</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>
|