commit 27511d8ec07c4deee8c8376a3e6e5dcb07e9efe5 Author: Keith Solomon Date: Mon Jan 26 07:40:55 2026 -0600 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..631a819 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode/ +notes/ diff --git a/block-template/block-template.css b/block-template/block-template.css new file mode 100644 index 0000000..b231c2d --- /dev/null +++ b/block-template/block-template.css @@ -0,0 +1 @@ +/* {{ BLOCK_NAME }} block styles */ diff --git a/block-template/block-template.php b/block-template/block-template.php new file mode 100644 index 0000000..d453fc5 --- /dev/null +++ b/block-template/block-template.php @@ -0,0 +1,23 @@ + + +
> + +
diff --git a/block-template/block.json b/block-template/block.json new file mode 100644 index 0000000..5c583ee --- /dev/null +++ b/block-template/block.json @@ -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 + } +}