feat: initial ACRIB WordPress deployment
- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
This commit is contained in:
102
wp-includes/blocks/video/block.json
Normal file
102
wp-includes/blocks/video/block.json
Normal file
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 3,
|
||||
"name": "core/video",
|
||||
"title": "Video",
|
||||
"category": "media",
|
||||
"description": "Embed a video from your media library or upload a new one.",
|
||||
"keywords": [ "movie" ],
|
||||
"textdomain": "default",
|
||||
"attributes": {
|
||||
"autoplay": {
|
||||
"type": "boolean",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "autoplay"
|
||||
},
|
||||
"caption": {
|
||||
"type": "rich-text",
|
||||
"source": "rich-text",
|
||||
"selector": "figcaption",
|
||||
"role": "content"
|
||||
},
|
||||
"controls": {
|
||||
"type": "boolean",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "controls",
|
||||
"default": true
|
||||
},
|
||||
"id": {
|
||||
"type": "number",
|
||||
"role": "content"
|
||||
},
|
||||
"loop": {
|
||||
"type": "boolean",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "loop"
|
||||
},
|
||||
"muted": {
|
||||
"type": "boolean",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "muted"
|
||||
},
|
||||
"poster": {
|
||||
"type": "string",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "poster"
|
||||
},
|
||||
"preload": {
|
||||
"type": "string",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "preload",
|
||||
"default": "metadata"
|
||||
},
|
||||
"blob": {
|
||||
"type": "string",
|
||||
"role": "local"
|
||||
},
|
||||
"src": {
|
||||
"type": "string",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "src",
|
||||
"role": "content"
|
||||
},
|
||||
"playsInline": {
|
||||
"type": "boolean",
|
||||
"source": "attribute",
|
||||
"selector": "video",
|
||||
"attribute": "playsinline"
|
||||
},
|
||||
"tracks": {
|
||||
"role": "content",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
},
|
||||
"default": []
|
||||
}
|
||||
},
|
||||
"supports": {
|
||||
"anchor": true,
|
||||
"align": true,
|
||||
"spacing": {
|
||||
"margin": true,
|
||||
"padding": true,
|
||||
"__experimentalDefaultControls": {
|
||||
"margin": false,
|
||||
"padding": false
|
||||
}
|
||||
},
|
||||
"interactivity": {
|
||||
"clientNavigation": true
|
||||
}
|
||||
},
|
||||
"editorStyle": "wp-block-video-editor",
|
||||
"style": "wp-block-video"
|
||||
}
|
||||
Reference in New Issue
Block a user