Alex Dunmow f6e2c1dccc 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:31:20 +08:00

21 lines
705 B
Plaintext

<!DOCTYPE html>
<html lang="en" class="dark">
{{ head_html|safe }}
<body class="terminal-page bg-background text-foreground antialiased min-h-screen flex flex-col">
{{ admin_banner_html|safe }}
<section class="w-full">
<div class="terminal-main-80 px-4 py-8">{{ slots.hero|safe }}</div>
</section>
<main class="flex-grow w-full">
{% if slots.main %}<div class="terminal-main-80 px-4 py-8">{{ slots.main|safe }}</div>{% endif %}
</main>
<section class="w-full">
<div class="terminal-main-80 px-4 py-6">{{ slots.cta|safe }}</div>
</section>
<footer class="w-full mt-auto">
<div class="terminal-main-80 px-4">{{ slots.footer|safe }}</div>
</footer>
{{ body_end_html|safe }}
</body>
</html>