Alex Dunmow 3207394c38 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:26:48 +08:00

18 lines
935 B
Plaintext

<!doctype html>
<html lang="en">
{{ head_html|safe }}
<body class="cm-body" style="margin: 0; min-height: 100vh; display: flex; flex-direction: column; background-color: hsl(var(--background)); color: hsl(var(--foreground));">
{{ admin_banner_html|safe }}
<header class="cm-hairline-bottom" style="width: 100%;">
<div class="cm-content-well">{{ slots.header|safe }}</div>
</header>
<section style="width: 100%;">{{ slots.hero|safe }}</section>
<main style="flex: 1 1 auto;" data-content-well>
{% if slots.main %}<div class="cm-content-well"><div class="cm-swiss-12" data-grid="swiss-12" style="padding-top: 3rem; padding-bottom: 3rem;"><div style="grid-column: span 12 / span 12;">{{ slots.main|safe }}</div></div></div>{% endif %}
</main>
<section style="width: 100%;">{{ slots.cta|safe }}</section>
<footer style="width: 100%; margin-top: auto;">{{ slots.footer|safe }}</footer>
{{ body_end_html|safe }}
</body>
</html>