{"id":21311,"date":"2026-04-26T14:15:29","date_gmt":"2026-04-26T12:15:29","guid":{"rendered":"https:\/\/edicionesdelantal.es\/?p=21311"},"modified":"2026-04-27T11:38:48","modified_gmt":"2026-04-27T09:38:48","slug":"hola","status":"publish","type":"post","link":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/","title":{"rendered":"Plantilla"},"content":{"rendered":"\n<div id=\"altavoz-fanzine-container\" style=\"font-family: Arial, Helvetica, sans-serif; max-width: 750px; margin: 0 auto; color: #000; line-height: 1.4; background-color: #ffffff;\">\n\n    <!-- 1. EVENTS CALENDAR -->\n    <section style=\"margin-top: 20px;\">\n        <div style=\"text-align: center; border-bottom: 1px solid #ddd; border-top: 1px solid #ddd; padding: 10px 0; margin-bottom: 30px;\">\n            <h3 style=\"color: #000080; font-size: 22px; margin: 0; text-transform: capitalize;\">\n                <span id=\"dyn-month-name\">&#8230;<\/span> Calendar\n            <\/h3>\n        <\/div>\n        \n        <div id=\"events-loader\" style=\"text-align: center; color: #666; font-size: 14px;\">Searching for events&#8230;<\/div>\n        <!-- Listado de eventos en formato de tres columnas -->\n        <div id=\"events-list\" style=\"display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 0;\"><\/div>\n    <\/section>\n\n    <!-- 2. FEATURED ARTICLES -->\n    <section style=\"margin-top: 60px;\">\n        <div style=\"text-align: center; border-bottom: 1px solid #ddd; border-top: 1px solid #ddd; padding: 10px 0; margin-bottom: 20px;\">\n            <h3 style=\"color: #000080; font-size: 22px; margin: 0;\">Articles<\/h3>\n        <\/div>\n        \n        <!-- Listado de art\u00edculos en formato de tres columnas -->\n        <div id=\"articles-list\" style=\"display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 0;\"><\/div>\n    <\/section>\n\n    <!-- 3. NEW SHEET MUSIC -->\n    <section style=\"margin-top: 60px;\">\n        <div style=\"text-align: center; border-bottom: 1px solid #ddd; border-top: 1px solid #ddd; padding: 10px 0; margin-bottom: 30px; background: #f0f0f0;\">\n            <h3 style=\"color: #000080; font-size: 18px; margin: 0;\">New Sheet Music!<\/h3>\n        <\/div>\n        \n        <div id=\"music-loader\" style=\"text-align: center; color: #666; font-size: 14px;\">Loading sheet music&#8230;<\/div>\n        <!-- Listado de productos musicales con fondo gris -->\n        <div id=\"music-list\" style=\"display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 0; background-color: #f5f5f5; padding: 20px 0;\"><\/div>\n    <\/section>\n\n    <!-- 4. PIE DE P\u00c1GINA Y SUSCRIPCI\u00d3N -->\n    <footer style=\"margin-top: 60px; padding: 0; border-top: 2px solid #d92323; background-color: #ffffff; position: relative; overflow: hidden; min-height: 400px;\">\n        <!-- Imagen representativa de Sonia -->\n        <img decoding=\"async\" src=\"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/10\/eddelantal-home-lvem.png\" \n             style=\"width: 100%; max-width: 800px; display: block; margin: 0 auto; height: auto; position: absolute; left: 0; top: 0; z-index: 1;\" \n             alt=\"Sonia with flute\">\n        \n        <!-- Bloque de contenido superpuesto -->\n        <div style=\"position: relative; z-index: 2; padding: 40px 20px; text-align: center; margin-left: 170px; margin-top: 85px;\">\n            <h3 style=\"color: #d92323; margin: 0; font-size: 24px; font-weight: bold; font-family: 'Courier New', Courier, monospace; text-transform: uppercase;\">Join LaVidaenM\u00fasica<\/h3>\n            <p style=\"margin: 5px 0 10px 0; font-size: 11px; color: #d92323; font-weight: bold;\">Contribute to our projects with \u20ac3 per month or more!<\/p>\n            <div style=\"margin-top: 20px;\">\n                <a href=\"https:\/\/edicionesdelantal.es\/en\/subscription-account\/subscription-levels\/\" \n                   style=\"display: inline-block; background-color: #d92323; color: #ffffff; padding: 10px 25px; text-decoration: none; font-weight: bold; font-size: 12px; border-radius: 4px; text-transform: none;\">Can&#8217;t wait!<\/a>\n            <\/div>\n        <\/div>\n    <\/footer>\n\n    <script>\n        const API_BASE = '\/wp-json\/wp\/v2';\n        const EVENTS_API = '\/wp-json\/tribe\/events\/v1\/events';\n        \/\/ Identificadores de productos musicales\n        const MUSIC_PRODUCT_IDS = [14552, 13816, 13625];\n\n        const t = {\n            more: \"READ MORE\",\n            months: [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"],\n            days: [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]\n        };\n\n        async function initTemplate() {\n            \/\/ Gesti\u00f3n de fechas para la sincronizaci\u00f3n mensual\n            const now = new Date();\n            const currentYear = now.getFullYear();\n            const currentMonthIndex = now.getMonth(); \n            \n            \/\/ Localizaci\u00f3n del mes en el t\u00edtulo\n            document.getElementById('dyn-month-name').innerText = t.months[currentMonthIndex];\n\n            \/\/ Determinaci\u00f3n del rango temporal del mes en curso\n            const firstDay = `${currentYear}-${String(currentMonthIndex + 1).padStart(2, '0')}-01 00:00:00`;\n            const lastDayDate = new Date(currentYear, currentMonthIndex + 1, 0).getDate();\n            const lastDay = `${currentYear}-${String(currentMonthIndex + 1).padStart(2, '0')}-${lastDayDate} 23:59:59`;\n\n            try {\n                \/\/ 1. OBTENCI\u00d3N DE EVENTOS DE THE EVENTS CALENDAR\n                const evRes = await fetch(`${EVENTS_API}?per_page=3&status=publish&lang=en&start_date=${firstDay}&end_date=${lastDay}`);\n                const eventsData = await evRes.json();\n                const evContainer = document.getElementById('events-list');\n                document.getElementById('events-loader').style.display = 'none';\n\n                if(eventsData.events && eventsData.events.length > 0) {\n                    eventsData.events.forEach((ev, index) => {\n                        const isLast = index === eventsData.events.length - 1;\n                        const borderStyle = (!isLast && window.innerWidth > 600) ? 'border-right: 1px solid #ddd;' : '';\n                        \n                        const startDate = new Date(ev.start_date.replace(\/-\/g, \"\/\"));\n                        const dayName = t.days[startDate.getDay()];\n                        const dayNum = String(startDate.getDate()).padStart(2, '0');\n                        const monthName = t.months[startDate.getMonth()];\n                        const time = (ev.start_date_details.hour || '00') + \":\" + (ev.start_date_details.minutes || '00');\n\n                        evContainer.innerHTML += `\n                            <div style=\"flex: 1; min-width: 200px; margin-bottom: 40px; text-align: center; padding: 0 15px; ${borderStyle} box-sizing: border-box;\">\n                                <h4 style=\"font-size: 15px; margin-bottom: 5px; height: 35px; overflow: hidden; color: #333;\">${ev.title}<\/h4>\n                                <p style=\"font-weight: bold; margin: 5px 0; color: #444; font-size: 12px;\">\n                                    ${dayName}, ${monthName} ${dayNum} | ${time}\n                                <\/p>\n                                <p style=\"font-size: 11px; height: 50px; overflow: hidden; margin-bottom: 10px; color: #666;\">\n                                    ${ev.description.replace(\/<[^>]*>?\/gm, '').substring(0, 85)}...\n                                <\/p>\n                                <a href=\"${ev.url}\" style=\"color: #0000ee; text-decoration: underline; font-size: 11px; display: block; margin-bottom: 15px;\">${t.more}<\/a>\n                                ${ev.image ? `<img decoding=\"async\" src=\"${ev.image.url}\" style=\"width: 100%; height: 160px; object-fit: cover; border: 1px solid #eee; border-radius: 2px;\">` : ''}\n                            <\/div>`;\n                    });\n                } else {\n                    evContainer.innerHTML = `<p style=\"text-align:center; width:100%; color:#999; padding:20px;\">No events scheduled for ${t.months[currentMonthIndex]}.<\/p>`;\n                }\n\n                \/\/ 2. OBTENCI\u00d3N DE ENTRADAS DEL BLOG \n                const postRes = await fetch(`${API_BASE}\/posts?per_page=10&_embed&lang=en`);\n                let posts = await postRes.json();\n                const artContainer = document.getElementById('articles-list');\n                \n                \/\/ Filtro: Solo art\u00edculos con categor\u00edas\n                posts = posts.filter(post => post.categories && post.categories.length > 0 && !post.categories.includes(1)).slice(0, 3);\n\n                if (posts.length > 0) {\n                    const colors = ['#f5f1e6', '#e6f5ea', '#f5ebe6']; \n                    posts.forEach((post, i) => {\n                        const isLast = i === posts.length - 1;\n                        const borderStyle = (!isLast && window.innerWidth > 600) ? 'border-right: 1px solid #ddd;' : '';\n                        const bgColor = colors[i % colors.length];\n                        const img = post._embedded?.['wp:featuredmedia']?.[0]?.source_url || '';\n                        \n                        artContainer.innerHTML += `\n                            <div style=\"flex: 1; min-width: 200px; background: ${bgColor}; padding: 25px 15px; text-align: center; ${borderStyle} box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between;\">\n                                <div>\n                                    <h4 style=\"font-size: 16px; margin-top: 0; color: #000; height: 40px; overflow: hidden;\">${post.title.rendered}<\/h4>\n                                    <p style=\"font-size: 12px; color: #333; height: 60px; overflow: hidden;\">${post.excerpt.rendered.replace(\/<[^>]*>?\/gm, '').substring(0, 100)}...<\/p>\n                                <\/div>\n                                <div style=\"margin-top: 15px;\">\n                                    <a href=\"${post.link}\" style=\"display: inline-block; background: #000; color: #fff; padding: 10px 20px; text-decoration: none; font-weight: bold; font-size: 11px; margin-bottom: 15px;\">${t.more}<\/a>\n                                    ${img ? `<img decoding=\"async\" src=\"${img}\" style=\"display: block; margin: 0 auto; max-width: 100%; height: 160px; object-fit: cover; border: 1px solid #ddd;\">` : ''}\n                                <\/div>\n                            <\/div>`;\n                    });\n                }\n\n                \/\/ 3. CARGA DE PRODUCTOS MUSICALES MEDIANTE API \n                const musContainer = document.getElementById('music-list');\n                document.getElementById('music-loader').style.display = 'none';\n\n                let musicData = [];\n                try {\n                    const res = await fetch(`${API_BASE}\/product?include=${MUSIC_PRODUCT_IDS.join(',')}&_embed&lang=en`);\n                    if (res.ok) musicData = await res.json();\n                } catch(e) { }\n\n                if (musicData.length === 0) {\n                    try {\n                        const res = await fetch(`${API_BASE}\/posts?include=${MUSIC_PRODUCT_IDS.join(',')}&_embed&lang=en`);\n                        if (res.ok) musicData = await res.json();\n                    } catch(e) { console.error(\"Error loading sheet music:\", e); }\n                }\n\n                if (musicData.length > 0) {\n                    \/\/ Ordenaci\u00f3n basada en la definici\u00f3n de identificadores\n                    musicData.sort((a, b) => MUSIC_PRODUCT_IDS.indexOf(a.id) - MUSIC_PRODUCT_IDS.indexOf(b.id));\n\n                    musicData.forEach((item, index) => {\n                        const isLast = index === musicData.length - 1;\n                        const borderStyle = (!isLast && window.innerWidth > 600) ? 'border-right: 1px solid #ddd;' : '';\n                        const img = item._embedded?.['wp:featuredmedia']?.[0]?.source_url || 'https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/03\/' + item.slug + '.jpg';\n                        \n                        const cleanTitle = (item.title.rendered || item.title).split('(')[0].trim().toUpperCase();\n\n                        musContainer.innerHTML += `\n                            <div style=\"flex: 1; min-width: 200px; text-align: center; padding: 0 15px; ${borderStyle} box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between;\">\n                                <div>\n                                    <h4 style=\"font-size: 14px; margin-bottom: 15px; height: 35px; overflow: hidden; text-transform: uppercase; color: #333;\">${cleanTitle}<\/h4>\n                                <\/div>\n                                <div style=\"background-color: #e0e0e0; padding: 10px; margin-bottom: 15px; min-height: 180px; display: flex; align-items: center; justify-content: center;\">\n                                    <img decoding=\"async\" src=\"${img}\" style=\"max-width: 100%; max-height: 180px; height: auto; width: auto; border: 1px solid #ccc; border-radius: 2px; display: block;\" alt=\"${cleanTitle}\" onerror=\"this.src='https:\/\/via.placeholder.com\/300\/cccccc\/000000?text=${cleanTitle}'\">\n                                <\/div>\n                                <a href=\"${item.link}\" style=\"color: #000; font-weight: bold; text-decoration: underline; font-size: 11px; display: block; margin-bottom: 10px;\">${t.more}<\/a>\n                            <\/div>`;\n                    });\n                }\n\n            } catch (err) {\n                console.error(\"General error loading content:\", err);\n            }\n        }\n\n        window.addEventListener('DOMContentLoaded', initTemplate);\n    <\/script>\n<\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8230; Calendar Searching for events&#8230; Articles New Sheet Music! Loading sheet music&#8230; Join LaVidaenM\u00fasica Contribute to our projects with \u20ac3 per month or more! Can&#8217;t wait!<\/p>\n","protected":false},"author":176,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","pmpro_default_level":"","_uag_custom_page_level_css":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-21311","post","type-post","status-publish","format-standard","hentry","category-sin-categoria","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Plantilla - EdicionesDelantal<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Norbis Acevedo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/\"},\"author\":{\"name\":\"Norbis Acevedo\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#\\\/schema\\\/person\\\/2503f46c7fd5675086ede8d1073057e4\"},\"headline\":\"Plantilla\",\"datePublished\":\"2026-04-26T12:15:29+00:00\",\"dateModified\":\"2026-04-27T09:38:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/\"},\"wordCount\":27,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/eddelantal-home-lvem.png\",\"articleSection\":[\"Sin categor\u00eda\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/\",\"name\":\"Plantilla - EdicionesDelantal\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/eddelantal-home-lvem.png\",\"datePublished\":\"2026-04-26T12:15:29+00:00\",\"dateModified\":\"2026-04-27T09:38:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#primaryimage\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/eddelantal-home-lvem.png\",\"contentUrl\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/eddelantal-home-lvem.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/2026\\\/04\\\/plantilla\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Plantilla\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#website\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/\",\"name\":\"EdicionesDelantal\",\"description\":\"Composer Sonia Meg\u00edas&#039; publishing company\",\"publisher\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/edicionesdelantal.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#organization\",\"name\":\"EdicionesDelantal\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/a-EdicionesDelantal_LOGOCUADRADO.jpg\",\"contentUrl\":\"https:\\\/\\\/edicionesdelantal.es\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/a-EdicionesDelantal_LOGOCUADRADO.jpg\",\"width\":948,\"height\":948,\"caption\":\"EdicionesDelantal\"},\"image\":{\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/edicionesdelantal.es\\\/#\\\/schema\\\/person\\\/2503f46c7fd5675086ede8d1073057e4\",\"name\":\"Norbis Acevedo\",\"url\":\"https:\\\/\\\/edicionesdelantal.es\\\/en\\\/author\\\/norbisacevedo\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Plantilla - EdicionesDelantal","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/","twitter_misc":{"Written by":"Norbis Acevedo","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#article","isPartOf":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/"},"author":{"name":"Norbis Acevedo","@id":"https:\/\/edicionesdelantal.es\/#\/schema\/person\/2503f46c7fd5675086ede8d1073057e4"},"headline":"Plantilla","datePublished":"2026-04-26T12:15:29+00:00","dateModified":"2026-04-27T09:38:48+00:00","mainEntityOfPage":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/"},"wordCount":27,"commentCount":0,"publisher":{"@id":"https:\/\/edicionesdelantal.es\/#organization"},"image":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#primaryimage"},"thumbnailUrl":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/10\/eddelantal-home-lvem.png","articleSection":["Sin categor\u00eda"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/","url":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/","name":"Plantilla - EdicionesDelantal","isPartOf":{"@id":"https:\/\/edicionesdelantal.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#primaryimage"},"image":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#primaryimage"},"thumbnailUrl":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/10\/eddelantal-home-lvem.png","datePublished":"2026-04-26T12:15:29+00:00","dateModified":"2026-04-27T09:38:48+00:00","breadcrumb":{"@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#primaryimage","url":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/10\/eddelantal-home-lvem.png","contentUrl":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2024\/10\/eddelantal-home-lvem.png"},{"@type":"BreadcrumbList","@id":"https:\/\/edicionesdelantal.es\/en\/2026\/04\/plantilla\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/edicionesdelantal.es\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Plantilla"}]},{"@type":"WebSite","@id":"https:\/\/edicionesdelantal.es\/#website","url":"https:\/\/edicionesdelantal.es\/","name":"EdicionesDelantal","description":"Composer Sonia Meg\u00edas&#039; publishing company","publisher":{"@id":"https:\/\/edicionesdelantal.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/edicionesdelantal.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/edicionesdelantal.es\/#organization","name":"EdicionesDelantal","url":"https:\/\/edicionesdelantal.es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/edicionesdelantal.es\/#\/schema\/logo\/image\/","url":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2017\/11\/a-EdicionesDelantal_LOGOCUADRADO.jpg","contentUrl":"https:\/\/edicionesdelantal.es\/wp-content\/uploads\/2017\/11\/a-EdicionesDelantal_LOGOCUADRADO.jpg","width":948,"height":948,"caption":"EdicionesDelantal"},"image":{"@id":"https:\/\/edicionesdelantal.es\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/edicionesdelantal.es\/#\/schema\/person\/2503f46c7fd5675086ede8d1073057e4","name":"Norbis Acevedo","url":"https:\/\/edicionesdelantal.es\/en\/author\/norbisacevedo\/"}]}},"jetpack_featured_media_url":"","uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"woocommerce_thumbnail":false,"woocommerce_single":false,"woocommerce_gallery_thumbnail":false},"uagb_author_info":{"display_name":"Norbis Acevedo","author_link":"https:\/\/edicionesdelantal.es\/en\/author\/norbisacevedo\/"},"uagb_comment_info":0,"uagb_excerpt":"&#8230; Calendar Searching for events&#8230; Articles New Sheet Music! Loading sheet music&#8230; Join LaVidaenM\u00fasica Contribute to our projects with \u20ac3 per month or more! Can&#8217;t wait!","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/posts\/21311","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/users\/176"}],"replies":[{"embeddable":true,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/comments?post=21311"}],"version-history":[{"count":19,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/posts\/21311\/revisions"}],"predecessor-version":[{"id":21357,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/posts\/21311\/revisions\/21357"}],"wp:attachment":[{"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/media?parent=21311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/categories?post=21311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/edicionesdelantal.es\/en\/wp-json\/wp\/v2\/tags?post=21311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}