23 lines
982 B
Plaintext
23 lines
982 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="brutalist-page antialiased min-h-screen flex flex-col" data-brutalist-template="article">
|
|
{{ 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>
|
|
<section class="w-full">
|
|
<div class="brutalist-shell" style="max-width: 90rem; margin: 0 auto; padding: 1rem 1.5rem;">{{ slots.meta|safe }}</div>
|
|
</section>
|
|
<main class="flex-grow w-full">
|
|
<article class="brutalist-shell" style="max-width: 60rem; margin: 0 auto; padding: 2rem 1.5rem 4rem;">
|
|
{% if slots.main %}{{ slots.main|safe }}{% endif %}
|
|
</article>
|
|
</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>
|