Alex Dunmow dccd269ab2 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:17:12 +08:00

14 lines
533 B
Plaintext

<!doctype html>
<html lang="en">
{{ head_html|safe }}
<body class="kg-page kg-dotted-paper">
{{ admin_banner_html|safe }}
<header class="kg-section" style="padding-block: 1.5rem;">{{ slots.header|safe }}</header>
<main class="kg-container" style="padding-block: 2rem; flex: 1;">
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="kg-empty">No content blocks assigned to this page.</div>{% endif %}
</main>
<footer style="margin-top: auto;">{{ slots.footer|safe }}</footer>
{{ body_end_html|safe }}
</body>
</html>