| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/photo-card", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Photo Card", |
| 7 |
"category": "bkbg-media", |
| 8 |
"description": "A styled media card with a prominent photo, category tag, title, excerpt, and meta information.", |
| 9 |
"keywords": [ |
| 10 |
"photo", |
| 11 |
"card", |
| 12 |
"article", |
| 13 |
"post", |
| 14 |
"blog", |
| 15 |
"image", |
| 16 |
"media" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-photo-card-editor", |
| 20 |
"style": "bkbg-photo-card-style", |
| 21 |
"attributes": { |
| 22 |
"imageUrl": { |
| 23 |
"type": "string", |
| 24 |
"default": "" |
| 25 |
}, |
| 26 |
"imageAlt": { |
| 27 |
"type": "string", |
| 28 |
"default": "" |
| 29 |
}, |
| 30 |
"aspectRatio": { |
| 31 |
"type": "string", |
| 32 |
"default": "16/9" |
| 33 |
}, |
| 34 |
"category": { |
| 35 |
"type": "string", |
| 36 |
"default": "Technology" |
| 37 |
}, |
| 38 |
"showCategory": { |
| 39 |
"type": "boolean", |
| 40 |
"default": true |
| 41 |
}, |
| 42 |
"title": { |
| 43 |
"type": "string", |
| 44 |
"default": "The Future of Web Development Starts Today" |
| 45 |
}, |
| 46 |
"excerpt": { |
| 47 |
"type": "string", |
| 48 |
"default": "Explore how modern tooling, AI-assisted coding, and component-driven design are reshaping the way we build for the web." |
| 49 |
}, |
| 50 |
"showExcerpt": { |
| 51 |
"type": "boolean", |
| 52 |
"default": true |
| 53 |
}, |
| 54 |
"author": { |
| 55 |
"type": "string", |
| 56 |
"default": "Alex Morgan" |
| 57 |
}, |
| 58 |
"showAuthor": { |
| 59 |
"type": "boolean", |
| 60 |
"default": true |
| 61 |
}, |
| 62 |
"date": { |
| 63 |
"type": "string", |
| 64 |
"default": "25 Feb 2026" |
| 65 |
}, |
| 66 |
"showDate": { |
| 67 |
"type": "boolean", |
| 68 |
"default": true |
| 69 |
}, |
| 70 |
"readTime": { |
| 71 |
"type": "string", |
| 72 |
"default": "5 min read" |
| 73 |
}, |
| 74 |
"showReadTime": { |
| 75 |
"type": "boolean", |
| 76 |
"default": true |
| 77 |
}, |
| 78 |
"linkUrl": { |
| 79 |
"type": "string", |
| 80 |
"default": "" |
| 81 |
}, |
| 82 |
"linkText": { |
| 83 |
"type": "string", |
| 84 |
"default": "Read article \u2192" |
| 85 |
}, |
| 86 |
"showLink": { |
| 87 |
"type": "boolean", |
| 88 |
"default": true |
| 89 |
}, |
| 90 |
"layout": { |
| 91 |
"type": "string", |
| 92 |
"default": "vertical" |
| 93 |
}, |
| 94 |
"imageSide": { |
| 95 |
"type": "string", |
| 96 |
"default": "left" |
| 97 |
}, |
| 98 |
"borderRadius": { |
| 99 |
"type": "number", |
| 100 |
"default": 14 |
| 101 |
}, |
| 102 |
"padding": { |
| 103 |
"type": "number", |
| 104 |
"default": 20 |
| 105 |
}, |
| 106 |
"titleTypo": { |
| 107 |
"type": "object", |
| 108 |
"default": {} |
| 109 |
}, |
| 110 |
"bodyTypo": { |
| 111 |
"type": "object", |
| 112 |
"default": {} |
| 113 |
}, |
| 114 |
"metaTypo": { |
| 115 |
"type": "object", |
| 116 |
"default": {} |
| 117 |
}, |
| 118 |
"bgColor": { |
| 119 |
"type": "string", |
| 120 |
"default": "#ffffff" |
| 121 |
}, |
| 122 |
"cardBg": { |
| 123 |
"type": "string", |
| 124 |
"default": "#ffffff" |
| 125 |
}, |
| 126 |
"borderColor": { |
| 127 |
"type": "string", |
| 128 |
"default": "#e5e7eb" |
| 129 |
}, |
| 130 |
"titleColor": { |
| 131 |
"type": "string", |
| 132 |
"default": "#111827" |
| 133 |
}, |
| 134 |
"textColor": { |
| 135 |
"type": "string", |
| 136 |
"default": "#6b7280" |
| 137 |
}, |
| 138 |
"metaColor": { |
| 139 |
"type": "string", |
| 140 |
"default": "#9ca3af" |
| 141 |
}, |
| 142 |
"categoryBg": { |
| 143 |
"type": "string", |
| 144 |
"default": "#6366f1" |
| 145 |
}, |
| 146 |
"categoryColor": { |
| 147 |
"type": "string", |
| 148 |
"default": "#ffffff" |
| 149 |
}, |
| 150 |
"linkColor": { |
| 151 |
"type": "string", |
| 152 |
"default": "#6366f1" |
| 153 |
}, |
| 154 |
"imagePlaceholderBg": { |
| 155 |
"type": "string", |
| 156 |
"default": "#e5e7eb" |
| 157 |
} |
| 158 |
} |
| 159 |
} |