Alex Dunmow 5dfc1cd4be 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:27:47 +08:00

20 lines
693 B
Plaintext

<!doctype html>
<html lang="en">
{{ head_html|safe }}
<body class="font-body antialiased min-h-screen flex flex-col" style="background-color: hsl(var(--background)); color: hsl(var(--foreground));">
{{ admin_banner_html|safe }}
<header class="w-full">
{{ slots.header|safe }}
</header>
<main class="flex-grow w-full max-w-4xl mx-auto px-4 py-12">
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="py-20 text-center font-body" style="color: hsl(var(--muted-foreground));">
<p>This page is still resting. Add a block to begin.</p>
</div>{% endif %}
</main>
<footer class="w-full mt-auto">
{{ slots.footer|safe }}
</footer>
{{ body_end_html|safe }}
</body>
</html>