Alex Dunmow 989f1fb515 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:28:29 +08:00

18 lines
727 B
Plaintext

<!doctype html>
<html lang="en">
{{ head_html|safe }}
<body class="bg-background text-foreground antialiased min-h-screen flex flex-col font-sans">
{{ admin_banner_html|safe }}
<header class="w-full mb-hairline-bottom">
<div class="max-w-6xl mx-auto px-6">{{ slots.masthead|safe }}</div>
</header>
<main class="flex-grow w-full">
<div class="max-w-6xl mx-auto px-6 py-12">{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="py-20 text-center font-mono mb-caption">No content blocks assigned to this page.</div>{% endif %}</div>
</main>
<footer class="w-full mt-auto mb-hairline-top">
<div class="max-w-6xl mx-auto px-6">{{ slots.colophon|safe }}</div>
</footer>
{{ body_end_html|safe }}
</body>
</html>