{"id":40251,"date":"2025-05-06T12:00:17","date_gmt":"2025-05-06T16:00:17","guid":{"rendered":"https:\/\/explora.cl\/magallanes\/?p=40251"},"modified":"2025-05-19T15:59:07","modified_gmt":"2025-05-19T19:59:07","slug":"19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025","status":"publish","type":"post","link":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/","title":{"rendered":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025"},"content":{"rendered":"<p>Un total de <strong>26 docentes<\/strong> y m\u00e1s de <strong>250 estudiantes<\/strong> de diversas comunas de la regi\u00f3n fueron seleccionados para formar parte del instrumento de <strong>Investigaci\u00f3n e Innovaci\u00f3n Escolar<\/strong>, del <strong>Proyecto Asociativo Regional (PAR) Explora Magallanes<\/strong>, financiado por el <strong>Programa Explora del Ministerio de Ciencia, Tecnolog\u00eda, Conocimiento e Innovaci\u00f3n<\/strong> y ejecutado por la <strong>Universidad de Magallanes<\/strong>.<\/p>\n<p>Esta iniciativa busca desarrollar y fortalecer <strong>competencias cient\u00edficas<\/strong>, impulsando proyectos de <strong>investigaci\u00f3n e innovaci\u00f3n<\/strong> y fomentando la <strong>socializaci\u00f3n del conocimiento<\/strong> dentro de las comunidades educativas desde primero b\u00e1sico hasta cuarto medio.<\/p>\n<p>La <strong>directora ejecutiva de PAR Explora Magallanes, Claudia Salinas<\/strong>, destac\u00f3: <em>\u201cFelicitamos a los equipos seleccionados de los 19 establecimientos de la regi\u00f3n por sumarse a nuestro instrumento de Investigaci\u00f3n e Innovaci\u00f3n Escolar. Su compromiso con la ciencia, el conocimiento y la creatividad refleja el esp\u00edritu de esta iniciativa, donde el aprendizaje se transforma en descubrimiento\u201d.<\/em><\/p>\n<p>En los pr\u00f3ximos d\u00edas, los seleccionados ser\u00e1n contactados para coordinar futuras actividades.<\/p>\n<p><strong>Revisa aqu\u00ed la lista de docentes seleccionados:<\/strong><\/p>\n<div class=\"vc-images-carousel\" id=\"vc-carousel-40251-69612e4788e56\">\n<div class=\"vc-carousel-container\"><\/div>\n<div class=\"vc-carousel-controls\"><button class=\"vc-carousel-prev\" aria-label=\"Imagen anterior\">\u2039<\/button><\/p>\n<div class=\"vc-carousel-pagination\"><\/div>\n<p><button class=\"vc-carousel-next\" aria-label=\"Imagen siguiente\">\u203a<\/button><\/div>\n<\/div>\n<style>\n.vc-images-carousel {\n    position: relative;\n    width: 100%;\n    max-width: 100%;\n    margin: 20px 0;\n}\n.vc-carousel-container {\n    display: flex;\n    overflow-x: auto;\n    scroll-snap-type: x mandatory;\n    -webkit-overflow-scrolling: touch;\n    scrollbar-width: none;\n    -ms-overflow-style: none;\n}\n.vc-carousel-container::-webkit-scrollbar {\n    display: none;\n}\n.vc-carousel-slide {\n    flex: 0 0 100%;\n    scroll-snap-align: start;\n    text-align: center;\n}\n.vc-carousel-slide img {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    margin: 0 auto;\n}\n.vc-carousel-controls {\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    gap: 10px;\n    margin-top: 15px;\n}\n.vc-carousel-prev,\n.vc-carousel-next {\n    background: #333;\n    color: white;\n    border: none;\n    padding: 10px 15px;\n    cursor: pointer;\n    font-size: 20px;\n    border-radius: 4px;\n    transition: background 0.3s;\n}\n.vc-carousel-prev:hover,\n.vc-carousel-next:hover {\n    background: #555;\n}\n.vc-carousel-pagination {\n    display: flex;\n    gap: 5px;\n}\n.vc-carousel-pagination span {\n    width: 10px;\n    height: 10px;\n    border-radius: 50%;\n    background: #ccc;\n    cursor: pointer;\n    transition: background 0.3s;\n}\n.vc-carousel-pagination span.active {\n    background: #333;\n}\n@media (min-width: 768px) {\n    .vc-carousel-slide {\n        flex: 0 0 33.333333333333%;\n    }\n}\n<\/style>\n<p><script>\n(function() {\n    var carousel = document.getElementById(\"vc-carousel-40251-69612e4788e56\");\n    if (!carousel) return;<\/p>\n<p>    var container = carousel.querySelector(\".vc-carousel-container\");\n    var slides = carousel.querySelectorAll(\".vc-carousel-slide\");\n    var prevBtn = carousel.querySelector(\".vc-carousel-prev\");\n    var nextBtn = carousel.querySelector(\".vc-carousel-next\");\n    var pagination = carousel.querySelector(\".vc-carousel-pagination\");\n    var currentIndex = 0;<\/p>\n<p>    \/\/ Crear puntos de paginaci\u00f3n\n    if (pagination && slides.length > 1) {\n        for (var i = 0; i < slides.length; i++) {\n            var dot = document.createElement(\"span\");\n            dot.setAttribute(\"data-index\", i);\n            if (i === 0) dot.classList.add(\"active\");\n            dot.addEventListener(\"click\", function() {\n                goToSlide(parseInt(this.getAttribute(\"data-index\")));\n            });\n            pagination.appendChild(dot);\n        }\n    }\n    \n    function goToSlide(index) {\n        if (index < 0) index = slides.length - 1;\n        if (index >= slides.length) index = 0;\n        currentIndex = index;<\/p>\n<p>        var slideWidth = slides[0].offsetWidth;\n        container.scrollTo({\n            left: slideWidth * index,\n            behavior: \"smooth\"\n        });<\/p>\n<p>        \/\/ Actualizar paginaci\u00f3n\n        if (pagination) {\n            var dots = pagination.querySelectorAll(\"span\");\n            dots.forEach(function(dot, i) {\n                dot.classList.toggle(\"active\", i === index);\n            });\n        }\n    }<\/p>\n<p>    if (prevBtn) {\n        prevBtn.addEventListener(\"click\", function() {\n            goToSlide(currentIndex - 1);\n        });\n    }<\/p>\n<p>    if (nextBtn) {\n        nextBtn.addEventListener(\"click\", function() {\n            goToSlide(currentIndex + 1);\n        });\n    }<\/p>\n<p>    \/\/ Autoplay si est\u00e1 habilitado\n    var autoplayEnabled = false;\n    if (autoplayEnabled && slides.length > 1) {\n        setInterval(function() {\n            goToSlide(currentIndex + 1);\n        }, 3000);\n    }<\/p>\n<p>    \/\/ Actualizar \u00edndice al hacer scroll manual\n    container.addEventListener(\"scroll\", function() {\n        var slideWidth = slides[0].offsetWidth;\n        currentIndex = Math.round(container.scrollLeft \/ slideWidth);\n        if (pagination) {\n            var dots = pagination.querySelectorAll(\"span\");\n            dots.forEach(function(dot, i) {\n                dot.classList.toggle(\"active\", i === currentIndex);\n            });\n        }\n    });\n})();\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Revisa aqu\u00ed los seleccionados Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025<\/p>\n","protected":false},"author":38,"featured_media":40290,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":"","_links_to":"","_links_to_target":""},"categories":[151,136],"tags":[],"class_list":["post-40251","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-banner","category-lugar-1"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes<\/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:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:type\" content=\"article\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:title\" content=\"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:description\" content=\"Revisa aqu\u00ed los seleccionados Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:url\" content=\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:site_name\" content=\"Magallanes\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-06T16:00:17+00:00\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-19T19:59:07+00:00\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:image\" content=\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta property=\"og:image:width\" content=\"735\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta property=\"og:image:height\" content=\"470\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" class=\"yoast-seo-meta-tag\" \/>\n<meta name=\"author\" content=\"cgalaz\" class=\"yoast-seo-meta-tag\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" class=\"yoast-seo-meta-tag\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta name=\"twitter:data1\" content=\"cgalaz\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo estimado de lectura\" class=\"yoast-seo-meta-tag\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" class=\"yoast-seo-meta-tag\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\"},\"author\":{\"name\":\"cgalaz\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/8cc9448cf690297d1abd64d05fa3f09f\"},\"headline\":\"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025\",\"datePublished\":\"2025-05-06T16:00:17+00:00\",\"dateModified\":\"2025-05-19T19:59:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\"},\"wordCount\":184,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/#organization\"},\"image\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png\",\"articleSection\":[\"Banner\",\"Lugar 1\"],\"inLanguage\":\"es-CL\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\",\"url\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\",\"name\":\"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes\",\"isPartOf\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png\",\"datePublished\":\"2025-05-06T16:00:17+00:00\",\"dateModified\":\"2025-05-19T19:59:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#breadcrumb\"},\"inLanguage\":\"es-CL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es-CL\",\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage\",\"url\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png\",\"contentUrl\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png\",\"width\":735,\"height\":470},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/explora.cl\/magallanes\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#website\",\"url\":\"https:\/\/explora.cl\/magallanes\/\",\"name\":\"Magallanes\",\"description\":\"Otro sitio m\u00e1s de explora.cl\",\"publisher\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/explora.cl\/magallanes\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es-CL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#organization\",\"name\":\"Magallanes\",\"url\":\"https:\/\/explora.cl\/magallanes\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-CL\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2021\/06\/cropped-ICONO-COLOR-2.jpg\",\"contentUrl\":\"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2021\/06\/cropped-ICONO-COLOR-2.jpg\",\"width\":1181,\"height\":1181,\"caption\":\"Magallanes\"},\"image\":{\"@id\":\"https:\/\/explora.cl\/magallanes\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/8cc9448cf690297d1abd64d05fa3f09f\",\"name\":\"cgalaz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-CL\",\"@id\":\"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7685b3fe3c7bc60f50658fbf1b7c83f8b28b5cce1eaf63033d32cae8b57fc828?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7685b3fe3c7bc60f50658fbf1b7c83f8b28b5cce1eaf63033d32cae8b57fc828?s=96&d=mm&r=g\",\"caption\":\"cgalaz\"},\"url\":\"https:\/\/explora.cl\/magallanes\/author\/cgalaz\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes","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:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/","og_locale":"es_ES","og_type":"article","og_title":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes","og_description":"Revisa aqu\u00ed los seleccionados Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025","og_url":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/","og_site_name":"Magallanes","article_published_time":"2025-05-06T16:00:17+00:00","article_modified_time":"2025-05-19T19:59:07+00:00","og_image":[{"width":735,"height":470,"url":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png","type":"image\/png"}],"author":"cgalaz","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"cgalaz","Tiempo estimado de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#article","isPartOf":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/"},"author":{"name":"cgalaz","@id":"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/8cc9448cf690297d1abd64d05fa3f09f"},"headline":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025","datePublished":"2025-05-06T16:00:17+00:00","dateModified":"2025-05-19T19:59:07+00:00","mainEntityOfPage":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/"},"wordCount":184,"commentCount":0,"publisher":{"@id":"https:\/\/explora.cl\/magallanes\/#organization"},"image":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage"},"thumbnailUrl":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png","articleSection":["Banner","Lugar 1"],"inLanguage":"es-CL","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/","url":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/","name":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025 - Magallanes","isPartOf":{"@id":"https:\/\/explora.cl\/magallanes\/#website"},"primaryImageOfPage":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage"},"image":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage"},"thumbnailUrl":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png","datePublished":"2025-05-06T16:00:17+00:00","dateModified":"2025-05-19T19:59:07+00:00","breadcrumb":{"@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#breadcrumb"},"inLanguage":"es-CL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/"]}]},{"@type":"ImageObject","inLanguage":"es-CL","@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#primaryimage","url":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png","contentUrl":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2025\/05\/3-1.png","width":735,"height":470},{"@type":"BreadcrumbList","@id":"https:\/\/explora.cl\/magallanes\/19-establecimientos-participan-en-investigacion-e-innovacion-escolar-2025\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/explora.cl\/magallanes\/"},{"@type":"ListItem","position":2,"name":"19 establecimientos participan en Investigaci\u00f3n e Innovaci\u00f3n Escolar 2025"}]},{"@type":"WebSite","@id":"https:\/\/explora.cl\/magallanes\/#website","url":"https:\/\/explora.cl\/magallanes\/","name":"Magallanes","description":"Otro sitio m\u00e1s de explora.cl","publisher":{"@id":"https:\/\/explora.cl\/magallanes\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/explora.cl\/magallanes\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es-CL"},{"@type":"Organization","@id":"https:\/\/explora.cl\/magallanes\/#organization","name":"Magallanes","url":"https:\/\/explora.cl\/magallanes\/","logo":{"@type":"ImageObject","inLanguage":"es-CL","@id":"https:\/\/explora.cl\/magallanes\/#\/schema\/logo\/image\/","url":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2021\/06\/cropped-ICONO-COLOR-2.jpg","contentUrl":"https:\/\/explora.cl\/magallanes\/wp-content\/uploads\/sites\/19\/2021\/06\/cropped-ICONO-COLOR-2.jpg","width":1181,"height":1181,"caption":"Magallanes"},"image":{"@id":"https:\/\/explora.cl\/magallanes\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/8cc9448cf690297d1abd64d05fa3f09f","name":"cgalaz","image":{"@type":"ImageObject","inLanguage":"es-CL","@id":"https:\/\/explora.cl\/magallanes\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7685b3fe3c7bc60f50658fbf1b7c83f8b28b5cce1eaf63033d32cae8b57fc828?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7685b3fe3c7bc60f50658fbf1b7c83f8b28b5cce1eaf63033d32cae8b57fc828?s=96&d=mm&r=g","caption":"cgalaz"},"url":"https:\/\/explora.cl\/magallanes\/author\/cgalaz\/"}]}},"_links":{"self":[{"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/posts\/40251","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/comments?post=40251"}],"version-history":[{"count":6,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/posts\/40251\/revisions"}],"predecessor-version":[{"id":40291,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/posts\/40251\/revisions\/40291"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/media\/40290"}],"wp:attachment":[{"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/media?parent=40251"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/categories?post=40251"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/explora.cl\/magallanes\/wp-json\/wp\/v2\/tags?post=40251"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}