20 lines
955 B
Plaintext
20 lines
955 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="brutalist-page antialiased min-h-screen flex flex-col" data-brutalist-template="default">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full" style="border-bottom: 1px solid hsl(var(--border));">
|
|
<div class="brutalist-shell" style="max-width: 90rem; margin: 0 auto; padding: 0 1.5rem;">{{ slots.header|safe }}</div>
|
|
</header>
|
|
<main class="flex-grow w-full">
|
|
<div class="brutalist-shell" style="max-width: 90rem; margin: 0 auto; padding: 2rem 1.5rem 4rem;">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="brutalist-mono" style="color: hsl(var(--muted-foreground)); padding: 4rem 0;">NO CONTENT BLOCKS ASSIGNED TO THIS PAGE.</p>{% endif %}
|
|
</div>
|
|
</main>
|
|
<footer class="w-full mt-auto">
|
|
<div class="brutalist-shell" style="max-width: 90rem; margin: 0 auto; padding: 0 1.5rem;">{{ slots.footer|safe }}</div>
|
|
</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|