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

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

58 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Site Footer",
"description": "Cream-on-moss footer with optional newsletter and botanical rule",
"type": "object",
"properties": {
"showNewsletter": {
"type": "boolean",
"title": "Show Newsletter",
"description": "Show the newsletter signup form",
"x-editor": "select",
"default": true
},
"tagline": {
"type": "string",
"title": "Tagline",
"description": "Tagline above the columns",
"x-editor": "text"
},
"columns": {
"type": "array",
"title": "Columns",
"description": "Footer link columns",
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Column Title",
"x-editor": "text"
},
"links": {
"type": "array",
"title": "Links",
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"title": "Text",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"x-editor": "link"
}
}
}
}
}
}
}
}
}