themes-brutalist/templates/brutalist/full-width.ninjatpl
Alex Dunmow 979516b5e9 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:08:06 +08:00

18 lines
705 B
Plaintext

<!doctype html>
<html lang="en">
{{ head_html|safe }}
<body class="brutalist-page antialiased min-h-screen flex flex-col" data-brutalist-template="full-width">
{{ 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">
{% if slots.main %}{{ slots.main|safe }}{% endif %}
</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>