Initial commit

This commit is contained in:
Keith Solomon
2026-01-26 07:40:55 -06:00
commit 27511d8ec0
4 changed files with 52 additions and 0 deletions

26
block-template/block.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "acf/{{ BLOCK_SLUG }}",
"title": "{{ BLOCK_NAME }}",
"description": "",
"style": [
"file:./{{ BLOCK_SLUG }}.css"
],
"category": "vdi-block",
"icon": "block-default",
"keywords": [
"{{ BLOCK_NAME }}"
],
"acf": {
"mode": "preview",
"renderTemplate": "{{ BLOCK_SLUG }}.php"
},
"supports": {
"align": true,
"anchor": true,
"color": true,
"html": false,
"jsx": false,
"mode": true,
"multiple": false
}
}