23 lines
615 B
Plaintext
23 lines
615 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="font-body antialiased min-h-screen flex flex-col" style="background-color: hsl(var(--background)); color: hsl(var(--foreground));">
|
|
{{ admin_banner_html|safe }}
|
|
<section class="w-full">
|
|
{{ slots.hero|safe }}
|
|
</section>
|
|
<main class="flex-grow w-full">
|
|
{% if slots.main %}<div class="max-w-6xl mx-auto px-4 py-20">
|
|
{{ slots.main|safe }}
|
|
</div>{% endif %}
|
|
</main>
|
|
<section class="w-full">
|
|
{{ slots.cta|safe }}
|
|
</section>
|
|
<footer class="w-full mt-auto">
|
|
{{ slots.footer|safe }}
|
|
</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|