19 lines
805 B
Plaintext
19 lines
805 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 }}
|
|
<section class="w-full">{{ slots.cover|safe }}</section>
|
|
<section class="w-full border-t border-b mb-hairline">
|
|
<div class="max-w-6xl mx-auto px-6 py-10">{{ slots.secondary|safe }}</div>
|
|
</section>
|
|
<main class="flex-grow w-full">
|
|
<div class="max-w-6xl mx-auto px-6 py-12">{% if slots.main %}{{ slots.main|safe }}{% 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>
|