themes-y2k/blocks/footer_chrome.schema.json
Alex Dunmow a86a54639a feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
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>
2026-07-04 15:10:52 +08:00

31 lines
775 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Chrome Footer",
"description": "Beveled chrome strip with optional webring and copyright.",
"type": "object",
"properties": {
"menuName": {
"type": "string",
"title": "Menu",
"description": "Optional footer menu to render.",
"x-editor": "menu-select",
"default": ""
},
"showWebring": {
"type": "string",
"title": "Show Webring",
"description": "Render the 88x31 webring badge row.",
"x-editor": "select",
"enum": ["yes", "no"],
"default": "yes"
},
"copyright": {
"type": "string",
"title": "Copyright",
"description": "Copyright line.",
"x-editor": "text",
"default": ""
}
}
}