themes-editorial/blocks/masthead.ninjatpl
Alex Dunmow efbfaea74c feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Convert the Editorial theme from a Go+templ wasm plugin to a fully codeless
.bnp: 7 blocks + 4 built-in overrides + email wrapper transcribed templ→pongo2
.ninjatpl (byte-faithful, parity-verified 55/55 identical), 4 page templates,
blocks/blocks.yaml (fully-qualified editorial:<key>), master_pages.json, and
manifest.yaml (system/page templates, template_overrides, email_wrapper, css
input_css_append). Schemas moved schemas/→blocks/. All Go, templ, go.mod/go.sum
deleted. plugin.mod bumped 0.1.2→0.2.0, [compatibility] dropped. Makefile
rewritten to codeless targets.

Gates: ninja plugin build → (codeless, no plugin.wasm); ninja plugin verify → OK;
check-safety → OK.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:27:31 +08:00

2 lines
841 B
Plaintext

<div class="editorial-wide" data-block="editorial:masthead">{% if compact == true or compact == "true" %}<div class="flex items-center justify-between py-3"><a href="/" class="editorial-masthead-wordmark text-2xl">{{ title|default:"Editorial" }}</a>{% if menuName %}<span class="editorial-masthead-kicker">{{ menuName }}</span>{% endif %}</div><hr class="editorial-masthead-rule">{% else %}<div class="text-center py-6">{% if kicker %}<div class="editorial-masthead-kicker mb-2">{{ kicker }}</div>{% endif %}<a href="/" class="editorial-masthead-wordmark inline-block text-5xl md:text-6xl">{{ title|default:"Editorial" }}</a><hr class="editorial-masthead-rule mt-4">{% if menuName %}<nav class="editorial-section-label mt-3" aria-label="Sections"><span class="text-xs">Sections: {{ menuName }}</span></nav>{% endif %}</div>{% endif %}</div>