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

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>