-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.json
More file actions
27 lines (27 loc) · 863 Bytes
/
block.json
File metadata and controls
27 lines (27 loc) · 863 Bytes
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
{
"apiVersion": 3,
"name": "ud/blank-block",
"title": "Blank Block",
"category": "ud-blocks",
"icon": "block-default",
"description": "Leerer Startblock für neue Gutenberg-Plugins. Ideal als Ausgangsbasis für eigene Blöcke mit Editor- und Frontend-Assets.",
"supports": {
"html": false
},
"editorScript": "file:./build/editor-script.js",
"editorStyle": "file:./build/editor-style.css",
"script": "file:./build/frontend-script.js",
"style": "file:./build/frontend-style.css",
"textdomain": "ud-blank-block-ud",
"example": {
"attributes": {},
"innerBlocks": [
{
"name": "core/paragraph",
"attributes": {
"content": "Dies ist ein leerer Beispielblock (UD Blank Block)."
}
}
]
}
}