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

18 lines
655 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 }}
<header class="w-full">
<div class="terminal-main-80 px-4">{{ slots.header|safe }}</div>
</header>
<main class="terminal-main-80 w-full px-4 py-8 flex-grow">
{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="terminal-mono">// no content blocks assigned to this page</p>{% endif %}
</main>
<footer class="w-full mt-auto">
<div class="terminal-main-80 px-4">{{ slots.footer|safe }}</div>
</footer>
{{ body_end_html|safe }}
</body>
</html>