themes-noir/schemas/footer.schema.json
Alex Dunmow 1bebbea5ad initial: theme plugin noir
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/noir.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:40 +08:00

41 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Noir Footer",
"description": "Dissolved bottom rail with optional colophon and social links.",
"type": "object",
"properties": {
"showColophon": {
"type": "string",
"title": "Show Colophon",
"description": "Render the colophon block beneath the footer rail.",
"x-editor": "select",
"enum": ["true", "false"],
"default": "true"
},
"social": {
"type": "array",
"title": "Social Links",
"description": "Optional social media links shown on the right of the footer rail.",
"x-editor": "array",
"default": [],
"items": {
"type": "object",
"x-editor": "link",
"properties": {
"text": {
"type": "string",
"title": "Label",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"x-editor": "text"
}
},
"required": ["text", "url"]
}
}
}
}