{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "awt/child-author-blog-list",
    "title": "Blog List ( Child Author )",
    "category": "awt-blocks",
    "icon": "list-view",
    "description": "Display a list of blog posts with customizable options",
    "editorScript": "file:./index.js",
    "keywords": [
        "blog",
        "posts",
        "list",
        "archive"
    ],
    "supports": {
        "html": false,
        "color": {},
        "typography": {},
        "spacing": {},
        "align": [
            "full"
        ],
        "alignWide": true
    },
    "attributes": {
        "align": {
            "type": "string",
            "default": "full"
        },
        "postsToShow": {
            "type": "number",
            "default": 6
        },
        "showImage": {
            "type": "boolean",
            "default": true
        },
        "showExcerpt": {
            "type": "boolean",
            "default": true
        },
        "readMoreText": {
            "type": "string",
            "default": "Read More"
        },
        "sectionBgColor": {
            "type": "string",
            "default": ""
        },
        "categoryColor": {
            "type": "string",
            "default": "#f97316"
        },
        "titleHoverColor": {
            "type": "string",
            "default": "#0ea5e9"
        },
        "readMoreColor": {
            "type": "string",
            "default": "#0ea5e9"
        },
        "paginationBgColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "paginationTextColor": {
            "type": "string",
            "default": "#1e293b"
        },
        "paginationHoverBgColor": {
            "type": "string",
            "default": "#0ea5e9"
        },
        "paginationHoverTextColor": {
            "type": "string",
            "default": "#ffffff"
        }
    },
    "render": "file:./render.php",
    "style": "file:./index.css"
}