-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblock.json
38 lines (38 loc) · 1.1 KB
/
block.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "cliowp-blocks/boilerplate",
"title": "ClioWP Blocks Boilerplate",
"category": "common",
"icon": "star-empty",
"description": "Free WordPress Gutenberg block-type Plugin Boilerplate for Developers",
"attributes": {
"headline": {
"type": "string",
"default": "Hello, Gutenberg!"
},
"bgColor": {
"type": "string",
"default": "#f1f1f1"
},
"borderColor": {
"type": "string",
"default": "#cac8c8"
},
"headlineAlignment": {
"type": "string",
"default": "left"
}
},
"example": {
"headline": "Hello, Gutenberg!",
"bgColor": "#f1f1f1",
"borderColor": "#cac8c8",
"headlineAlignment": "left"
},
"textdomain": "td-cliowp-blocks-boilerplate",
"editorScript": "file:./build/editor.js",
"editorStyle": "file:./build/editor.css",
"script": "file:./build/frontend.js",
"style": "file:./build/frontend.css"
}