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

17 lines
711 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>
<div class="kg-container" style="display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: 2rem;">
<main>
{% if slots.main %}<article class="kg-text">{{ slots.main|safe }}</article>{% else %}<div class="kg-empty">No content yet — start a story.</div>{% endif %}
</main>
{% if slots.aside %}<aside class="kg-card">{{ slots.aside|safe }}</aside>{% endif %}
</div>
<footer style="margin-top: auto;">{{ slots.footer|safe }}</footer>
{{ body_end_html|safe }}
</body>
</html>