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

16 lines
799 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>
<main style="flex: 1 1 auto; width: 100%;" data-content-well>
{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="cm-content-well" style="padding-top: 4rem; padding-bottom: 4rem;"><p class="cm-stat-label">No content blocks assigned to this page.</p></div>{% endif %}
</main>
<footer style="width: 100%; margin-top: auto;">{{ slots.footer|safe }}</footer>
{{ body_end_html|safe }}
</body>
</html>