block.json
5 months ago
index-rtl.css
5 months ago
index.asset.php
5 months ago
index.css
5 months ago
index.js
5 months ago
render.php
5 months ago
block.json
103 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "awt/child-author-footer", |
| 5 | "title": "Footer (Child Author)", |
| 6 | "category": "author-website-templates", |
| 7 | "icon": "admin-site-alt3", |
| 8 | "description": "Dynamic footer with menus, social links, and copyright for Child Author template", |
| 9 | "keywords": [ |
| 10 | "footer", |
| 11 | "menu", |
| 12 | "copyright", |
| 13 | "child-author" |
| 14 | ], |
| 15 | "textdomain": "author-website-templates", |
| 16 | "editorScript": "file:./index.js", |
| 17 | "render": "file:./render.php", |
| 18 | "attributes": { |
| 19 | "align": { |
| 20 | "type": "string", |
| 21 | "default": "full" |
| 22 | }, |
| 23 | "logoText": { |
| 24 | "type": "string", |
| 25 | "default": "Danielle Steel" |
| 26 | }, |
| 27 | "menu1Slug": { |
| 28 | "type": "string", |
| 29 | "default": "" |
| 30 | }, |
| 31 | "menu1Title": { |
| 32 | "type": "string", |
| 33 | "default": "Explore" |
| 34 | }, |
| 35 | "menu2Slug": { |
| 36 | "type": "string", |
| 37 | "default": "" |
| 38 | }, |
| 39 | "copyrightText": { |
| 40 | "type": "string", |
| 41 | "default": "All the fun reserved." |
| 42 | }, |
| 43 | "footerBgColor": { |
| 44 | "type": "string" |
| 45 | }, |
| 46 | "textColor": { |
| 47 | "type": "string" |
| 48 | }, |
| 49 | "headingColor": { |
| 50 | "type": "string" |
| 51 | }, |
| 52 | "footerTitleColor": { |
| 53 | "type": "string" |
| 54 | }, |
| 55 | "footerTitleHoverColor": { |
| 56 | "type": "string" |
| 57 | }, |
| 58 | "socialIconColor": { |
| 59 | "type": "string" |
| 60 | }, |
| 61 | "socialIconHoverColor": { |
| 62 | "type": "string" |
| 63 | }, |
| 64 | "footerStyle": { |
| 65 | "type": "string", |
| 66 | "default": "fun" |
| 67 | }, |
| 68 | "logoType": { |
| 69 | "type": "string", |
| 70 | "default": "custom" |
| 71 | }, |
| 72 | "logoImageId": { |
| 73 | "type": "number", |
| 74 | "default": 0 |
| 75 | }, |
| 76 | "logoImageUrl": { |
| 77 | "type": "string", |
| 78 | "default": "" |
| 79 | }, |
| 80 | "bioText": { |
| 81 | "type": "string", |
| 82 | "default": "" |
| 83 | }, |
| 84 | "showCurve": { |
| 85 | "type": "boolean", |
| 86 | "default": true |
| 87 | }, |
| 88 | "curveColor": { |
| 89 | "type": "string", |
| 90 | "default": "#FFF8E7" |
| 91 | }, |
| 92 | "blockId": { |
| 93 | "type": "string" |
| 94 | } |
| 95 | }, |
| 96 | "supports": { |
| 97 | "align": [ |
| 98 | "full" |
| 99 | ], |
| 100 | "html": false |
| 101 | }, |
| 102 | "style": "file:./index.css" |
| 103 | } |