Convert the Y2K theme from a Go+templ wasm plugin to a fully codeless .bnp: blocks/blocks.yaml + .ninjatpl, page/system templates, template overrides, email wrapper, master pages and CSS declared in manifest.yaml. All *.go, *.templ, *_templ.go, go.mod and go.sum deleted; schemas moved schemas/ -> blocks/. Static parity proven 48/48 identical against the templ baseline (10 blocks x full+empty+variant branches, 4 overrides incl. heading L1-6, email full+empty). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
605 B
Plaintext
24 lines
605 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="bg-background text-foreground antialiased min-h-screen flex flex-col">
|
|
{{ admin_banner_html|safe }}
|
|
<section class="w-full">
|
|
{{ slots.hero|safe }}
|
|
</section>
|
|
<section class="w-full">
|
|
{{ slots.marquee|safe }}
|
|
</section>
|
|
<main class="flex-grow">
|
|
{% if slots.main %}<div class="max-w-6xl mx-auto px-4 py-16">{{ slots.main|safe }}</div>{% endif %}
|
|
</main>
|
|
<section class="w-full">
|
|
{{ slots.cta|safe }}
|
|
</section>
|
|
<footer class="w-full mt-auto">
|
|
{{ slots.footer|safe }}
|
|
</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|