An error occurred while processing the template.
Invocation of method 'getImageProperties' in class com.liferay.portal.util.IterTemplateContent threw exception XYZ_E_INVALID_IMG_URL_ZYX at 21736/F/SCROLL_INFINITO[line 75, column 36]
1$iterVelocityTools.setRenderArticleMode(1)
2#set($sectionID = "#printAssignedSectionID_v1")
3#set($canonicalUrl = $articleToolbox.getArticleViewer('canonical'))
4#set($title = $!articleToolbox.getTag(null,'Headline').data)
5#set($hostName = "#siteUrl()")
6#set($fullUrl = "${hostName}${canonicalUrl}")
7
8#set($titleRaw = $!title)
9#if(!$titleRaw) #set($titleRaw = "") #end
10#set($titleClean = $titleRaw.replaceAll('"', "'").replaceAll('\n', ' ').replaceAll('\r', '').replaceAll('\\', '\\\\').replaceAll('<', '').replaceAll('>', '').trim())
11
12#set($descRaw = $!articleToolbox.getTag(null, 'Resumen_News').data)
13#if(!$descRaw || $descRaw == "") #set($descRaw = $!articleToolbox.getTag(null, 'Subheadline').data) #end
14#if(!$descRaw || $descRaw == "") #set($descRaw = $!articleToolbox.getTag(null, 'Lead_Text').data) #end
15#if(!$descRaw || $descRaw == "") #set($descRaw = $titleClean) #end
16#set($descClean = $htmlUtil.stripHtml($descRaw).replaceAll('"', "'").replaceAll('\n', ' ').replaceAll('\r', '').replaceAll('\\', '\\\\').replaceAll('<', '').replaceAll('>', '').trim())
17
18#set($rawModify = $reserved-article-modified-date.data)
19#set($rawPublish = $reserved-article-display-date.data)
20#set($fmtIn = "EEE, d MMM yyyy HH:mm:ss Z")
21#set($fmtOutISO = "yyyy-MM-dd'T'HH:mm:ssXXX")
22#set($fmtOutDisplay = "d MMMM yyyy")
23#set($dateObjP = $dateTool.toDate($fmtIn, $rawPublish))
24#if($dateObjP)
25 #set($datePublished = $dateTool.format($fmtOutISO, $dateObjP))
26 #set($dateDisplay = $dateTool.format($fmtOutDisplay, $dateObjP))
27#else
28 #set($datePublished = $dateTool.get($fmtOutISO))
29 #set($dateDisplay = $dateTool.get($fmtOutDisplay))
30#end
31#set($dateObjM = $dateTool.toDate($fmtIn, $rawModify))
32#if($dateObjM)
33 #set($dateModified = $dateTool.format($fmtOutISO, $dateObjM))
34#else
35 #set($dateModified = $datePublished)
36#end
37
38#set($hmTemas = {}) #getAcAssignedCatExtended_v1($hmTemas "Topic")
39#set($hmGeografico = {}) #getAcAssignedCatExtended_v1($hmGeografico "Location")
40#set($hmCompanies = {}) #getAcAssignedCatExtended_v1($hmCompanies "Companies")
41#set($hmPersonajes = {}) #getAcAssignedCatExtended_v1($hmPersonajes "People")
42#set($hmAutores = {}) #getAcAssignedCatExtended_v1($hmAutores "Author")
43#set($AuthorNoFoto = $!iterVelocityTools.getVariable($sectionID, "authorNoFoto"))
44
45#set($section = "#printAssignedSection_v1")
46#set($sectionSlug = $section.toLowerCase().replaceAll(" ", "-").replaceAll("á","a").replaceAll("é","e").replaceAll("í","i").replaceAll("ó","o").replaceAll("ú","u").replaceAll("ñ","n"))
47
48#set($imgDefault = "https://vanguardia.com.mx/base-portlet/webrsrc/theme/13d16cf89ee0b324585019c9998ec6dd.svg")
49
50#set($img16x9 = $articleToolbox.getImageURL("Image","0","crop_1200x675"))
51#if(!$img16x9 || $img16x9 == "")
52 #set($img16x9 = $articleToolbox.getImageURL("Image","0","crop_1152x648_detalle"))
53#end
54#if(!$img16x9 || $img16x9 == "")
55 #set($img16x9 = $articleToolbox.getImageURL("Image","0","crop_1200x801"))
56#end
57#if(!$img16x9 || $img16x9 == "")
58 #set($img16x9 = $articleToolbox.getImageURL("Image","0",""))
59#end
60#if(!$img16x9 || $img16x9 == "")
61 #set($img16x9 = $imgDefault)
62#end
63
64#set($imgOG = $articleToolbox.getImageURL("Image","0","social"))
65#if(!$imgOG || $imgOG == "")
66 #set($imgOG = $img16x9)
67#end
68
69#set($imgTwitter = $img16x9)
70#set($imgLCP = $img16x9)
71#set($jsonLdImage = $img16x9)
72
73#set($imgProps = false)
74#if($img16x9 && $img16x9 != $imgDefault)
75 #set($imgProps = $articleToolbox.getImageProperties($img16x9))
76#end
77#set($imgWidth = 1200)
78#set($imgHeight = 675)
79#if($imgProps && $imgProps.width)
80 #set($imgWidth = $imgProps.width)
81#end
82#if($imgProps && $imgProps.height)
83 #set($imgHeight = $imgProps.height)
84#end
85
86#set($imgOGProps = false)
87#if($imgOG && $imgOG != $imgDefault && $imgOG != $img16x9)
88 #set($imgOGProps = $articleToolbox.getImageProperties($imgOG))
89#end
90#set($imgOGWidth = 1200)
91#set($imgOGHeight = 630)
92#if($imgOGProps && $imgOGProps.width)
93 #set($imgOGWidth = $imgOGProps.width)
94#end
95#if($imgOGProps && $imgOGProps.height)
96 #set($imgOGHeight = $imgOGProps.height)
97#end
98
99#set($ac-url = $articleContext.selectNodes('articlectx/url'))
100#set($xml-url = $ac-url.get(0).text)
101#set($url_actual = $!xml-url)
102
103#set($arrayListContenidos = [])
104#macro(regEl $name $type $class $tag)
105 #set($e = {})
106 #set($x = $e.put("name", $name))
107 #set($x = $e.put("type", $type))
108 #set($x = $e.put("cssclass", $class))
109 #set($x = $e.put("tag", $tag))
110 #set($x = $arrayListContenidos.add($e))
111#end
112#regEl("Text", "paragraph", "texto", "div")
113#regEl("Image_Text", "image", "img text", "div")
114#regEl("Image_Text_GIF", "image", "imagen", "div")
115#regEl("Lead_Text", "text", "intertitulo", "div")
116#regEl("HTML_Text", "html", "html_text", "div")
117#regEl("Twitter_Text", "twitter", "twitter_text", "div")
118#regEl("Facebook_Text", "facebook", "facebook_text", "div")
119#regEl("Instagram_Text", "instagram", "instagram_text", "div")
120#regEl("Youtube_Text", "youtube", "youtube_video", "div")
121#regEl("Multimedia_Text", "multimedia", "video", "div")
122#regEl("Flourish_Text", "text", "flourish_text", "div")
123#regEl("Quote", "text", "quote", "div")
124#regEl("Quote_byline", "text", "Quote_byline", "div")
125#regEl("linkTitle_Text", "text", "link_tpi", "div")
126#regEl("title_list", "microformat", "microformat", "div")
127#regEl("image_list", "microformat", "microformat", "div")
128#regEl("text_list", "microformat", "microformat", "div")
129#regEl("Parrafo_Lista", "text", "Parrafo_Lista", "div")
130#regEl("Titulo_News", "text", "titulo_news", "div")
131#regEl("Resumen_News", "text", "resumen_news", "div")
132#regEl("Boton", "text", "Boton", "div")
133#regEl("Lead", "text", "lead destacado", "div")
134#regEl("Ficha_Titulo", "text", "Ficha_Titulo", "div")
135#regEl("Ficha_Foto", "image", "Ficha_Foto", "div")
136#regEl("Ficha_Texto", "text", "Ficha_Texto", "div")
137#regEl("Ficha_Social", "text", "Ficha_Social", "div")
138#regEl("Entrevista_Pregunta", "text", "Entrevista_Pregunta", "div")
139#regEl("Entrevista_Respuesta", "text", "Entrevista_Respuesta", "div")
140#regEl("URLCanonical", "text", "URLCanonical", "div")
141#regEl("Titulo_App", "text", "Titulo_App", "div")
142#regEl("resena_titulo", "text", "resena_titulo", "div")
143#regEl("resena_imagen", "image", "resena_imagen", "div")
144#regEl("resena_texto", "text", "resena_texto", "div")
145
146#set($FacebookText_ = $articleToolbox.getTag(null,"Facebook_Text"))
147#if($FacebookText_ && $FacebookText_.data != "")
148<div id="fb-root"></div>
149<script async defer src="https://connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v21.0"></script>
150#end
151
152#set($sectionUrl = "${hostName}/${sectionSlug}")
153#set($bcLevel1 = "")
154#set($bcLevel1Url = "")
155#set($bcLevel2 = "")
156#set($bcLevel2Url = "")
157#set($hasLevel2 = false)
158#if($canonicalUrl && $canonicalUrl.lastIndexOf("/") > 0)
159 #set($lastSlashIdx = $canonicalUrl.lastIndexOf("/"))
160 #set($sectionPath = $canonicalUrl.substring(0, $lastSlashIdx))
161 #set($tempPath = $sectionPath)
162 #if($tempPath.startsWith("/"))
163 #set($tempPath = $tempPath.substring(1))
164 #end
165 #set($firstSlash = $tempPath.indexOf("/"))
166 #if($firstSlash > 0)
167 #set($bcLevel1 = $tempPath.substring(0, $firstSlash))
168 #set($bcLevel1Url = "${hostName}/${bcLevel1}")
169 #set($nextIdx = $firstSlash + 1)
170 #set($bcLevel2 = $tempPath.substring($nextIdx))
171 #set($bcLevel2Url = "${hostName}${sectionPath}")
172 #set($hasLevel2 = true)
173 #else
174 #set($bcLevel1 = $tempPath)
175 #set($bcLevel1Url = "${hostName}/${bcLevel1}")
176 #end
177#end
178#if($bcLevel1 == "")
179 #set($bcLevel1 = $sectionSlug)
180 #set($bcLevel1Url = "${hostName}/${sectionSlug}")
181#end
182
183<script type="application/ld+json">
184{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Vanguardia","item":"https://vanguardia.com.mx"},{"@type":"ListItem","position":2,"name":"$htmlUtil.escape($bcLevel1)","item":"$htmlUtil.escape($bcLevel1Url)"}#if($hasLevel2),{"@type":"ListItem","position":3,"name":"$htmlUtil.escape($bcLevel2)","item":"$htmlUtil.escape($bcLevel2Url)"}#end]}
185</script>
186
187<script type="application/ld+json" id="vangdata-schema-newsarticle">
188{"@context":"https://schema.org","@type":"NewsArticle","headline":"$!{titleClean}","dateModified":"$!{dateModified}","datePublished":"$!{datePublished}","author":[#if($hmAutores && !$hmAutores.isEmpty())#set($authorIdx = 0)#foreach($elem in $hmAutores)#set($authorNameClean = $!elem.name.replaceAll('"', "'").replaceAll('\n', ' ').replaceAll('\\', '\\\\').replaceAll('<', '').replaceAll('>', '').trim())#set($authorNameLower = $authorNameClean.toLowerCase())#set($esAgencia = false)#if($authorNameLower.contains("efe") || $authorNameLower.contains("ap ") || $authorNameLower.equals("ap") || $authorNameLower.contains("espn") || $authorNameLower.contains("new york times") || $authorNameLower.contains("reforma") || $authorNameLower.contains("el universal") || $authorNameLower.contains("reuters") || $authorNameLower.contains("afp") || $authorNameLower.contains("notimex") || $authorNameLower.contains("dpa"))#set($esAgencia = true)#end#if($authorIdx > 0),#end#if($esAgencia){"@type":"Organization","name":"$!{authorNameClean}","url":"${hostName}/autor/-/meta/$htmlUtil.escapeURL($!elem.friendlyname)"}#else{"@type":"Person","name":"$!{authorNameClean}","url":"${hostName}/autor/-/meta/$htmlUtil.escapeURL($!elem.friendlyname)"}#end#set($authorIdx = $authorIdx + 1)#end#else{"@type":"Organization","name":"Vanguardia","url":"https://vanguardia.com.mx"}#end],"image":["$htmlUtil.escape($jsonLdImage)"],"isAccessibleForFree":true}
189</script>
190
191#set($youtubeContent = $articleToolbox.getTag(null,"Youtube_Text"))
192#if($youtubeContent && $youtubeContent.data && $youtubeContent.data != "")
193#set($youtubeRaw = $youtubeContent.data)
194#set($youtubeId = "")
195#if($youtubeRaw.contains("youtube.com/embed/"))
196 #set($startIdx = $youtubeRaw.indexOf("youtube.com/embed/"))
197 #set($startIdx = $startIdx + 18)
198 #set($tempStr = $youtubeRaw.substring($startIdx))
199 #if($tempStr.contains('"'))
200 #set($endIdx = $tempStr.indexOf('"'))
201 #set($youtubeId = $tempStr.substring(0, $endIdx))
202 #elseif($tempStr.contains("?"))
203 #set($endIdx = $tempStr.indexOf("?"))
204 #set($youtubeId = $tempStr.substring(0, $endIdx))
205 #else
206 #set($youtubeId = $tempStr.substring(0, 11))
207 #end
208#elseif($youtubeRaw.contains("youtu.be/"))
209 #set($startIdx = $youtubeRaw.indexOf("youtu.be/"))
210 #set($startIdx = $startIdx + 9)
211 #set($tempStr = $youtubeRaw.substring($startIdx))
212 #if($tempStr.contains('"'))
213 #set($endIdx = $tempStr.indexOf('"'))
214 #set($youtubeId = $tempStr.substring(0, $endIdx))
215 #else
216 #set($youtubeId = $tempStr.substring(0, 11))
217 #end
218#elseif($youtubeRaw.contains("watch?v="))
219 #set($startIdx = $youtubeRaw.indexOf("watch?v="))
220 #set($startIdx = $startIdx + 8)
221 #set($tempStr = $youtubeRaw.substring($startIdx))
222 #if($tempStr.contains("&"))
223 #set($endIdx = $tempStr.indexOf("&"))
224 #set($youtubeId = $tempStr.substring(0, $endIdx))
225 #elseif($tempStr.contains('"'))
226 #set($endIdx = $tempStr.indexOf('"'))
227 #set($youtubeId = $tempStr.substring(0, $endIdx))
228 #else
229 #set($youtubeId = $tempStr.substring(0, 11))
230 #end
231#end
232#set($youtubeIdClean = $youtubeId.replaceAll("[^a-zA-Z0-9_-]", ""))
233#if($youtubeIdClean && $youtubeIdClean.length() == 11)
234<script type="application/ld+json">
235{"@context":"https://schema.org","@type":"VideoObject","name":"$!{titleClean}","description":"$!{descClean}","thumbnailUrl":"https://img.youtube.com/vi/${youtubeIdClean}/maxresdefault.jpg","uploadDate":"$!{datePublished}","embedUrl":"https://www.youtube.com/embed/${youtubeIdClean}","contentUrl":"https://www.youtube.com/watch?v=${youtubeIdClean}"}
236</script>
237#end
238#end
239
240#set($metaOG = {}) #set($temp = $metaOG.put("property","og:site_name")) #set($temp = $metaOG.put("content", "Vanguardia")) $iterVelocityTools.addMetaTag($metaOG)
241#set($metaOG = {}) #set($temp = $metaOG.put("property","og:type")) #set($temp = $metaOG.put("content", "article")) $iterVelocityTools.addMetaTag($metaOG)
242#set($metaOG = {}) #set($temp = $metaOG.put("property","og:title")) #set($temp = $metaOG.put("content", "$htmlUtil.escape($titleClean)")) $iterVelocityTools.addMetaTag($metaOG)
243#set($metaOG = {}) #set($temp = $metaOG.put("property","og:description")) #set($temp = $metaOG.put("content", "$htmlUtil.escape($descClean)")) $iterVelocityTools.addMetaTag($metaOG)
244#set($metaOG = {}) #set($temp = $metaOG.put("property","og:url")) #set($temp = $metaOG.put("content", "$htmlUtil.escape($fullUrl)")) $iterVelocityTools.addMetaTag($metaOG)
245#set($metaOG = {}) #set($temp = $metaOG.put("property","og:image")) #set($temp = $metaOG.put("content", "$htmlUtil.escape($imgOG)")) $iterVelocityTools.addMetaTag($metaOG)
246#set($metaOG = {}) #set($temp = $metaOG.put("property","og:image:width")) #set($temp = $metaOG.put("content", "$imgOGWidth")) $iterVelocityTools.addMetaTag($metaOG)
247#set($metaOG = {}) #set($temp = $metaOG.put("property","og:image:height")) #set($temp = $metaOG.put("content", "$imgOGHeight")) $iterVelocityTools.addMetaTag($metaOG)
248#set($metaOG = {}) #set($temp = $metaOG.put("property","article:published_time")) #set($temp = $metaOG.put("content", "$datePublished")) $iterVelocityTools.addMetaTag($metaOG)
249#set($metaOG = {}) #set($temp = $metaOG.put("property","article:modified_time")) #set($temp = $metaOG.put("content", "$dateModified")) $iterVelocityTools.addMetaTag($metaOG)
250#set($metaOG = {}) #set($temp = $metaOG.put("property","article:section")) #set($temp = $metaOG.put("content", "$htmlUtil.escape($section)")) $iterVelocityTools.addMetaTag($metaOG)
251
252#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:card")) #set($temp = $metaTW.put("content", "summary_large_image")) $iterVelocityTools.addMetaTag($metaTW)
253#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:site")) #set($temp = $metaTW.put("content", "@vanguardiamx")) $iterVelocityTools.addMetaTag($metaTW)
254#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:title")) #set($temp = $metaTW.put("content", "$htmlUtil.escape($titleClean)")) $iterVelocityTools.addMetaTag($metaTW)
255#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:description")) #set($temp = $metaTW.put("content", "$htmlUtil.escape($descClean)")) $iterVelocityTools.addMetaTag($metaTW)
256#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:image")) #set($temp = $metaTW.put("content", "$htmlUtil.escape($imgTwitter)")) $iterVelocityTools.addMetaTag($metaTW)
257#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:image:alt")) #set($temp = $metaTW.put("content", "$htmlUtil.escape($titleClean)")) $iterVelocityTools.addMetaTag($metaTW)
258#set($metaTW = {}) #set($temp = $metaTW.put("name","twitter:url")) #set($temp = $metaTW.put("content", "$htmlUtil.escape($fullUrl)")) $iterVelocityTools.addMetaTag($metaTW)
259
260<script>console.log("%c VNG-ESTANDAR-30 v9.0","background:#179d30ff;color:white;padding:4px;font-weight:bold");</script>
261
262<script>
263(function(){
264 function applyNativeLazy(img) {
265 if (img.closest('.image_main')) return;
266 if (img.src && img.src.includes('placeholder/svg')) return;
267 if (img.hasAttribute('loading')) return;
268 img.loading = 'lazy';
269 img.decoding = 'async';
270 }
271 new MutationObserver(function(mutations) {
272 mutations.forEach(function(mutation) {
273 mutation.addedNodes.forEach(function(node) {
274 if (node.nodeName === 'IMG') applyNativeLazy(node);
275 if (node.querySelectorAll) {
276 node.querySelectorAll('img').forEach(applyNativeLazy);
277 }
278 });
279 });
280 }).observe(document.documentElement, {childList: true, subtree: true});
281 document.querySelectorAll('img').forEach(applyNativeLazy);
282})();
283</script>
284
285#if($imgLCP && $imgLCP != "")
286<link rel="preload" as="image" href="$htmlUtil.escape($imgLCP)" fetchpriority="high">
287#end
288
289<div class="template-infinity idart_$reserved-article-id.data detail col-100-top-one-col col-xs-12 v2" id-next="$htmlUtil.escape($!art_next.reserved-article-id.data)" id-section="$htmlUtil.escape($sectionID)">
290
291<style>.block_URLCanonical{display:none}#iter-content-wrapper{min-height:1000px}@media (min-width:769px){.row.middle{align-items:flex-start !important;overflow:visible !important}.row.middle>.col-md-3{align-self:flex-start !important;overflow:visible !important}.col-60-40-top-two-col{overflow:visible !important}.col-60-40-top-one-col{overflow:visible !important}.portlet-column{overflow:visible !important}.mrf-article-body{overflow:visible !important}.template-infinity{overflow:visible !important}.container{overflow:visible !important}article{overflow:visible !important}}div.block_Parrafo_Lista p{margin:0px !important}div.media_block1 a div img{border-radius:50% !important;border:#ff6d00 3px solid}.misarticulos{font-size:1rem;text-transform:uppercase;font-family:"PT Sans",helvetica,arial,sans-serif;font-weight:400;letter-spacing:1px;border-bottom:solid 2.5px #ff7c2c;max-width:168px;margin:0 auto}.author-card2{border:#c7c7c7d1 1px solid;margin-block:50px;width:90%;margin-inline:auto;padding-inline:5%;padding-top:30px;background-color:#F2F2F2}.author-description{padding-inline:5%;margin-bottom:20px}.author-description a{color:#ff6d00 !important}.btn-follow-wrapper{position:relative;display:inline-block;margin-bottom:15px}.btn-follow-google{display:inline-flex;align-items:center;gap:5px;padding:6px 12px;min-height:32px;border:1px solid #dadce0;border-radius:999px;font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:500;color:#1f1f1f;background-color:#fff;text-decoration:none;cursor:pointer;transition:background-color .2s ease,box-shadow .2s ease;box-sizing:border-box}.btn-follow-google:hover{background-color:#f8f9fa;box-shadow:0 1px 3px rgba(0,0,0,.08);text-decoration:none;color:#1f1f1f}.btn-follow-google:active{background-color:#f1f3f4}.btn-follow-plus{font-size:18px;font-weight:300;line-height:1;color:#5f6368;margin-right:2px}.btn-follow-text{white-space:nowrap;color:#3c4043}.btn-follow-google-icon{display:flex;align-items:center;justify-content:center;width:18px;height:18px;flex-shrink:0}.btn-follow-google-icon svg{width:18px;height:18px}.btn-follow-tooltip{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);background-color:#3c4043;color:#fff;font-size:12px;padding:6px 10px;border-radius:4px;white-space:nowrap;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease;pointer-events:none;z-index:10}.btn-follow-tooltip::before{content:'';position:absolute;bottom:100%;left:50%;transform:translateX(-50%);border:5px solid transparent;border-bottom-color:#3c4043}.btn-follow-wrapper:hover .btn-follow-tooltip{opacity:1;visibility:visible}.thrd-pty-wgn{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:24px 0;max-width:100%;box-sizing:border-box}.thrd-pty-ch{display:flex;align-items:center;justify-content:space-between;text-decoration:none;border:1px solid #e0e0e0;border-radius:999px;padding:12px 16px;transition:all .2s ease;background:#fff;min-width:0}.thrd-pty-ch:hover{border-color:#bdbdbd;background:#fafafa}.thrd-pty-ch-ctn{display:flex;align-items:center;gap:12px;min-width:0;flex:1}.thrd-pty-txt{font-size:14px;line-height:1.3;color:#111;margin:0}.g-nws-tg-icon{position:relative;width:48px;height:48px;flex-shrink:0}.g-nws-tg-icon img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:block}.glo-wsp-icon{width:50px;height:50px;flex-shrink:0}.lnk-icon-arrow{flex-shrink:0}.lnk-icon-arrow-rect,.lnk-icon-arrow-path{transition:all .2s ease}.thrd-pty-ch:hover .lnk-icon-arrow-rect{stroke:#999}.thrd-pty-ch:hover .lnk-icon-arrow-path{fill:#999}@media(max-width:768px){.thrd-pty-wgn{grid-template-columns:1fr}.thrd-pty-txt{font-size:16px}}</style>
292
293<div class="container">
294 <script>var group_id="$htmlUtil.escape($!request.theme-display.scope-group-id)";var id_art_infinity="$htmlUtil.escape($!reserved-article-id.data)";if(typeof n_noticia==="undefined")n_noticia=0;#if($iterVelocityTools.getVelocityVariable("teaseritemposition") == 1)var teaser_first=true;n_noticia=1;idart_view="$htmlUtil.escape($reserved-article-id.data)";#else var teaser_first=false;n_noticia=n_noticia+1;#end</script>
295 #set($titleForJS = $titleClean.replaceAll('"', '\\"').replaceAll("'", "\\'").replaceAll('\n', ' ').replaceAll('<', '').replaceAll('>', '').replaceAll('/', '\\/'))
296 <script>document.addEventListener("DOMContentLoaded",function(){if(typeof sendHitUser==="function"){sendHitUser("$titleForJS");}});</script>
297
298 <div class="banner-bg">
299 <div class="banner-flex">
300 <div class="publicidad-container" style="height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%;">
301 <span class="publicidad-label">Publicidad</span>
302 <div id="div-gpt-ad-1733160976056-0" style="width: 100%; max-height: 250px; margin: 0 auto; display: flex; justify-content: center;"></div>
303 </div>
304 </div>
305 </div>
306
307 <article class="mrf-article-body" style="min-height: 1000px;">
308 #set($NombreAutor = "")
309 #set($IDAutor = "")
310 #if($hmAutores && $hmAutores.size() > 0)
311 #foreach($elem in $hmAutores)
312 #set($NombreAutor = $htmlUtil.escape($elem.name))
313 #set($IDAutor = $htmlUtil.escape($elem.id))
314 <div data-author-name="$NombreAutor" class="meta-author-name"></div>
315 <div data-author-id="$IDAutor" class="meta-author-id"></div>
316 <div class="categoryListItem categoryPageItem" data-categoryid="$IDAutor" data-categoryname="$NombreAutor"></div>
317 #end
318 #end
319
320 <div id="eww-general" style="display:none;"></div>
321
322 <h1 class="headline artit font-1 medium bold" canonicalUrl="$htmlUtil.escape($canonicalUrl)" idart="$htmlUtil.escape($reserved-article-id.data)">#getTitle_v1</h1>
323
324 <div class="btn-follow-wrapper">
325 <a href="https://profile.google.com/cp/CgsvZy8xdGN6d2Nqa" class="btn-follow-google" aria-label="Seguir a VANGUARDIA en Google Discover" target="_blank" rel="noopener">
326 <span class="btn-follow-plus">+</span>
327 <span class="btn-follow-text">Seguir en</span>
328 <span class="btn-follow-google-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path fill="#4285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="#34A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="#FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="#EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg></span>
329 </a>
330 <span class="btn-follow-tooltip">Seguir en Google</span>
331 </div>
332
333 <div class="info">
334 <span class="secc">#printTopcontainer_v1("section" "")</span> /
335 <span class="date">$htmlUtil.escape($dateDisplay)</span>
336 </div>
337
338 <div class="row middle">
339 <div class="col-60-40-top-one-col col-xs-12 col-md-8 col-lg-8 portlet-column nopadding" id="col-60-40-top-one-col">
340
341 #set($hasImages = $articleToolbox.getNumImageTags("Image", "true"))
342 #if($section == "Opinión" || $section == "Politicón")
343 #if($hasImages > 0)
344 <div class="image_main">
345 #getMultimediaMixed_v1("fullcontent", "crop_1200x675", "100%", "432", "100%")
346 </div>
347 #elseif($hmAutores && $hmAutores.size() > 0)
348 #foreach($elem in $hmAutores)
349 #set($articuloInstrumental = $aboutCategoryArticles.getArticle($elem.id))
350 #set($authorNameEsc = $htmlUtil.escape($elem.name))
351 #set($imgColumn = $!articuloInstrumental.getImageTag("ImagenColumnista","0","crop_1200x675","","","","","true","",""))
352 #if(!$imgColumn || $imgColumn == "")
353 #set($imgColumn = $!articuloInstrumental.getImageTag("ImagenColumnista","0","crop_1152x648_detalle","","","","","true","",""))
354 #end
355 #if($imgColumn && $imgColumn != "")
356 <div class="image_main">$!imgColumn</div>
357 #end
358 #end
359 #end
360 #else
361 <div class="image_main">
362 #getMultimediaMixed_v1("fullcontent", "crop_1200x675", "100%", "432", "100%")
363 </div>
364 #end
365
366 <div class="row middle">
367 <div class="col-60-40-top-two-col col-xs-12 col-md-3 col-lg-3 portlet-column nopadding" id="col-60-40-top-two-col">
368 <div class="author">
369 #if($hmAutores && $hmAutores.size() > 0)
370 #foreach($elem in $hmAutores)
371 #set($articuloInstrumental = $aboutCategoryArticles.getArticle($elem.id))
372 #set($authorNameEsc = $htmlUtil.escape($elem.name))
373 #set($imgAuthor = $!articuloInstrumental.getImageTag("Image","0","crop_250x250","","","","","$authorNameEsc","",""))
374 <div class="img_author">
375 #if($imgAuthor && $imgAuthor != "")
376 $!imgAuthor
377 #else
378 <img class="img-fluid" src="$htmlUtil.escape($AuthorNoFoto)" alt="$authorNameEsc" loading="lazy"/>
379 #end
380 </div>
381 <div class="text_author">por <span class="name_author"><a href="/autor/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$authorNameEsc</a></span></div>
382 <div data-author-name="$authorNameEsc" class="meta-author-name"></div>
383 <div data-author-id="$htmlUtil.escape($elem.id)" class="meta-author-id"></div>
384 #set($NombreAutor = $authorNameEsc)
385 #set($IDAutor = $htmlUtil.escape($elem.id))
386 #end
387 #end
388 </div>
389 <div class="compartirr">
390 <div class="rrss d-desktop">
391 <h2 class="sectiondestacadas" style="margin-bottom: 15px; margin-top: 40px;">COMPARTIR</h2>
392 <div class="network-social">
393 #set($uEnc = $escapeTool.url($fullUrl))
394 #set($tEnc = $escapeTool.url($title))
395 <ul class="social-options">
396 <li><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Facebook"><div class="fab facebook"></div><b>Facebook</b></a></li>
397 <li><a class="twitter" href="https://twitter.com/intent/tweet?text=${tEnc}&url=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Twitter"><div class="fab twitter"></div><b>Twitter</b></a></li>
398 <li><a class="whatsapp" href="https://api.whatsapp.com/send?text=${tEnc}%20-%20${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Whatsapp"><div class="fab whatsapp"></div><b>Whatsapp</b></a></li>
399 <li><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Linkedin"><div class="fab linkedin"></div><b>Linkedin</b></a></li>
400 </ul>
401 </div>
402 </div>
403 <div class="temas d-desktop" temas="$hmTemas.size()">
404 #if($hmTemas && $hmTemas.size() > 0)
405 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">TEMAS</h2><br>
406 #set($count = 0)
407 #foreach($elem in $hmTemas)
408 #if($count < 3)
409 <div class="item_tema t_$hmTemas.size() keywords TemasTopics"><a href="/topic/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
410 #set($count = $count + 1)
411 #end
412 #end
413 #end
414 #if($hmGeografico && $hmGeografico.size() > 0)
415 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Localizaciones</h2><br>
416 #set($count = 0)
417 #foreach($elem in $hmGeografico)
418 #if($count < 3)
419 <div class="item_tema t_$hmGeografico.size() keywords TemasLocalizaciones"><a href="/localizaciones/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
420 #set($count = $count + 1)
421 #end
422 #end
423 #end
424 #if($hmPersonajes && $hmPersonajes.size() > 0)
425 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Personajes</h2><br>
426 #set($count = 0)
427 #foreach($elem in $hmPersonajes)
428 #if($count < 3)
429 <div class="item_tema t_$hmPersonajes.size() keywords TemasPersonajes"><a href="/personajes/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
430 #set($count = $count + 1)
431 #end
432 #end
433 #end
434 #if($hmCompanies && $hmCompanies.size() > 0)
435 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Organizaciones</h2><br>
436 #set($count = 0)
437 #foreach($elem in $hmCompanies)
438 #if($count < 3)
439 <div class="item_tema t_$hmCompanies.size() keywords TemasOrganizaciones"><a href="/organizaciones/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
440 #set($count = $count + 1)
441 #end
442 #end
443 #end
444 </div>
445 </div>
446 </div>
447
448 #php_if("getenv('ITER_UA_IS_MOBILE')==='true'")
449 <div class="rrss end d-movil" style="background: white; z-index: 3;">
450 <div class="cab-rrss">COMPARTIR</div>
451 <div class="network-social">
452 <ul class="social-options">
453 <li><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Facebook"><div class="fab facebook"></div></a></li>
454 <li><a class="twitter" href="https://twitter.com/intent/tweet?text=${tEnc}&url=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Twitter"><div class="fab twitter"></div></a></li>
455 <li><a class="whatsapp" href="https://api.whatsapp.com/send?text=${tEnc}%20-%20${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Whatsapp"><div class="fab whatsapp"></div></a></li>
456 <li><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=${uEnc}" target="_blank" rel="noopener noreferrer nofollow" title="Compartir en Linkedin"><div class="fab linkedin"></div></a></li>
457 </ul>
458 </div>
459 </div>
460 #php_end
461
462 <div class="col-60-40-top-one-col col-xs-12 col-md-9 col-lg-9 portlet-column nopadding" id="col-60-40-top-one-col" data-section="$htmlUtil.escape($section)" data-author="$NombreAutor" data-post-title="$htmlUtil.escape($titleClean)" data-post-id="$htmlUtil.escape($reserved-article-id.data)" data-author-id="$IDAutor">
463
464 #set($tempSubheadline = "#getTeaserSubheadline_v1(true)")
465 #if($tempSubheadline && $tempSubheadline != "")
466 <h2 class="subheadline">$tempSubheadline</h2>
467 #end
468
469 <div class="banner-bg"><div class="banner-flex"><div class="publicidad-container" style="height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%;"><span class="publicidad-label">Publicidad</span><div id="div-gpt-ad-1733161081350-0" style="width: 100%; max-height: 600px; margin: 0 auto; display: flex; justify-content: center;"></div></div></div></div>
470
471 <div id="eww-save-post" style="display:none;"></div>
472
473 <div class="text resizable" itemprop="articleBody">
474 #if($section == "Politicón")
475 <div class="PoliticonNotaslogo" style="width: 300px; height: 60px; margin-bottom: 3rem;"></div>
476 #end
477
478 #printHTMLContentArticle_v1_latam($arrayListContenidos, "crop_1152x648", "100%", "100%", "375")
479
480 <div class="thrd-pty-wgn">
481 <a aria-label="Google News" class="thrd-pty-ch" href="https://news.google.com/publications/CAAqLQgKIidDQklTRndnTWFoTUtFWFpoYm1kMVlYSmthV0V1WTI5dExtMTRLQUFQAQ?ceid=US:es-419&oc=3" target="_blank" rel="noopener noreferrer"><div class="thrd-pty-ch-ctn"><div class="g-nws-tg-icon"><svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" rx="24" fill="#F1F3F4"/><rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#DADCE0"/></svg><img alt="Google News" height="22" width="26" src="https://vanguardia.com.mx/binrepository/google-news-icon_1-14239467_20260119191111.png" loading="lazy"></div><p class="thrd-pty-txt">Sigue a <strong>Vanguardia</strong> en Google News.</p></div><svg width="32" height="32" class="lnk-icon-arrow" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="31" height="31" rx="15.5" class="lnk-icon-arrow-rect" stroke="#C2C2C2"></rect><path class="lnk-icon-arrow-path" d="M20.8188 10.0464C20.0855 10.0464 15.031 10.0726 13.2152 10.0726C12.8137 10.0726 12.4819 10.2123 12.255 10.5615C12.0367 10.9019 12.0193 11.286 12.2288 11.6352C12.4296 11.9931 12.7613 12.1677 13.189 12.1765C14.7866 12.1677 18.3483 12.1677 18.3483 12.1677L10.3432 20.1729C9.93285 20.5832 9.93285 21.2466 10.3432 21.6569C10.7534 22.0672 11.4169 22.0672 11.8272 21.6569L19.8411 13.6431C19.8411 13.6431 19.8411 17.2048 19.8323 18.8023C19.8323 19.2213 20.0069 19.5531 20.3736 19.7626C20.7315 19.9634 21.0982 19.9459 21.4473 19.7364C21.7965 19.5094 21.9362 19.1777 21.9362 18.7761C21.9449 16.9691 21.9624 11.1725 21.9624 11.1725C21.9624 10.4742 21.5346 10.0464 20.8275 10.0377L20.8188 10.0464Z" fill="#C2C2C2"></path></svg></a>
482 <a aria-label="WhatsApp" class="thrd-pty-ch" href="https://whatsapp.com/channel/0029Va2n3TCA2pL9rkrqWx2b" target="_blank" rel="noopener noreferrer"><div class="thrd-pty-ch-ctn"><svg width="48" height="48" class="glo-wsp-icon" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" rx="24" fill="#02840C" fill-opacity="0.05"></rect><rect x="0.5" y="0.5" width="47" height="47" rx="23.5" stroke="#02840C" stroke-opacity="0.7"></rect><path d="M27.43 25.4144C27.15 25.2811 26.95 25.3878 26.7634 25.6277C26.5101 25.9877 26.2035 26.321 25.9369 26.6676C25.7502 26.9075 25.5369 26.9609 25.2569 26.8409C23.4972 26.1343 22.1641 24.9745 21.1909 23.3747C21.0442 23.1348 21.0576 22.9481 21.2309 22.7348C21.4842 22.4282 21.7241 22.1349 21.9241 21.8016C22.0174 21.6416 22.0707 21.3883 22.0174 21.2284C21.7108 20.4152 21.3642 19.6286 21.0176 18.8287C20.9509 18.6821 20.8176 18.4954 20.6843 18.4821C20.1377 18.3888 19.5644 18.2821 19.0978 18.7354C18.1647 19.6153 17.818 20.6951 18.058 21.9349C18.2713 23.0414 18.8979 23.948 19.5644 24.8412C20.8309 26.4943 22.2974 27.9341 24.2438 28.7873C25.1903 29.2139 26.1502 29.6405 27.2167 29.6405C27.4033 29.6405 27.5899 29.6405 27.7632 29.6005C29.1764 29.3072 30.1762 28.5073 30.1229 27.0275C30.1229 26.8809 30.0296 26.6676 29.9229 26.6143C29.0964 26.1876 28.2698 25.801 27.43 25.4144Z" fill="#02840C"></path><path d="M35.9216 22.3087C35.0951 15.6963 28.7094 11.017 22.0837 12.1768C14.4714 13.4966 10.0721 21.4288 13.0316 28.4944C13.7915 29.4943 13.5916 30.5208 13.2316 31.6273C12.765 33.0404 12.4184 34.5069 12.0051 36C12.1784 35.96 12.2984 35.9467 12.4184 35.9067C14.2581 35.4268 16.0979 34.9602 17.9109 34.4802C18.2309 34.4002 18.4708 34.4402 18.7641 34.5869C21.2571 35.8 23.8834 36.1466 26.5763 35.5601C32.7488 34.1869 36.6815 28.5744 35.895 22.3353L35.9216 22.3087ZM25.5765 33.6937C23.2168 34.0669 21.0038 33.587 18.9241 32.4005C18.7641 32.3072 18.5108 32.2672 18.3109 32.3205C17.191 32.5872 16.0712 32.8938 14.8714 33.2004C15.178 32.0539 15.458 31.0007 15.7646 29.9209C15.8446 29.6409 15.8046 29.441 15.6579 29.201C12.0051 23.3219 15.1513 15.8163 21.9237 14.2565C27.4295 12.9767 33.0421 16.7761 33.8819 22.362C34.7085 27.8279 31.0423 32.8405 25.5765 33.6937Z" fill="#02840C"></path></svg><p class="thrd-pty-txt">Noticias de <strong>Vanguardia</strong> en WhatsApp.</p></div><svg width="32" height="32" class="lnk-icon-arrow" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="31" height="31" rx="15.5" class="lnk-icon-arrow-rect" stroke="#C2C2C2"></rect><path class="lnk-icon-arrow-path" d="M20.8188 10.0464C20.0855 10.0464 15.031 10.0726 13.2152 10.0726C12.8137 10.0726 12.4819 10.2123 12.255 10.5615C12.0367 10.9019 12.0193 11.286 12.2288 11.6352C12.4296 11.9931 12.7613 12.1677 13.189 12.1765C14.7866 12.1677 18.3483 12.1677 18.3483 12.1677L10.3432 20.1729C9.93285 20.5832 9.93285 21.2466 10.3432 21.6569C10.7534 22.0672 11.4169 22.0672 11.8272 21.6569L19.8411 13.6431C19.8411 13.6431 19.8411 17.2048 19.8323 18.8023C19.8323 19.2213 20.0069 19.5531 20.3736 19.7626C20.7315 19.9634 21.0982 19.9459 21.4473 19.7364C21.7965 19.5094 21.9362 19.1777 21.9362 18.7761C21.9449 16.9691 21.9624 11.1725 21.9624 11.1725C21.9624 10.4742 21.5346 10.0464 20.8275 10.0377L20.8188 10.0464Z" fill="#C2C2C2"></path></svg></a>
483 </div>
484 </div>
485
486 <div class="banner-bg"><div class="banner-flex"><div class="publicidad-container" style="height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%;"><span class="publicidad-label">Publicidad</span><div id="div-gpt-ad-1733161131848-0" style="width: 100%; max-height: 600px; margin: 0 auto; display: flex; justify-content: center;"></div></div></div></div>
487
488 <div class="temas d-movil" temas="$hmTemas.size()">
489 #if($hmTemas && $hmTemas.size() > 0)
490 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Temas</h2><br>
491 #set($count = 0)
492 #foreach($elem in $hmTemas)
493 #if($count < 3)
494 <div class="item_tema t_$hmTemas.size() keywords TemasTopics"><a href="/topic/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
495 #set($count = $count + 1)
496 #end
497 #end
498 <br>
499 #end
500 #if($hmGeografico && $hmGeografico.size() > 0)
501 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Localizaciones</h2><br>
502 #set($count = 0)
503 #foreach($elem in $hmGeografico)
504 #if($count < 3)
505 <div class="item_tema t_$hmGeografico.size() keywords TemasLocalizaciones"><a href="/localizaciones/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
506 #set($count = $count + 1)
507 #end
508 #end
509 <br>
510 #end
511 #if($hmPersonajes && $hmPersonajes.size() > 0)
512 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Personajes</h2><br>
513 #set($count = 0)
514 #foreach($elem in $hmPersonajes)
515 #if($count < 3)
516 <div class="item_tema t_$hmPersonajes.size() keywords TemasPersonajes"><a href="/personajes/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
517 #set($count = $count + 1)
518 #end
519 #end
520 <br>
521 #end
522 #if($hmCompanies && $hmCompanies.size() > 0)
523 <h2 class="sectiondestacadas1" style="margin-bottom: 15px;">Organizaciones</h2><br>
524 #set($count = 0)
525 #foreach($elem in $hmCompanies)
526 #if($count < 3)
527 <div class="item_tema t_$hmCompanies.size() keywords TemasOrganizaciones"><a href="/organizaciones/-/meta/$htmlUtil.escapeURL($elem.friendlyname)">$htmlUtil.escape($elem.name)</a></div>
528 #set($count = $count + 1)
529 #end
530 #end
531 <br>
532 #end
533 </div>
534
535 #set($NombreAutor = "")
536 #set($IDAutor = "")
537 #if($hmAutores && $hmAutores.size() > 0)
538 #foreach($elem in $hmAutores)
539 #set($NombreAutor = $htmlUtil.escape($elem.name))
540 #set($IDAutor = $htmlUtil.escape($elem.id))
541 <div class="categoryListItem categoryPageItem" data-categoryid="$IDAutor" data-categoryname="$NombreAutor"></div>
542 #set($articuloAutor = $aboutCategoryArticles.getArticle("$elem.id"))
543 #if($articuloAutor)
544 #set($imgAuthor = $!articuloAutor.getImageTag("Image","0","crop_250x250","","","","","$htmlUtil.escape($!articuloAutor.Headline.data)","",""))
545 #if($articuloAutor.Text && $articuloAutor.Text.data && $articuloAutor.Text.data.trim() != "" && $articuloAutor.Headline && $articuloAutor.Headline.data && $articuloAutor.Headline.data.trim() != "")
546 <div style="border-top: solid 1px #80808047; margin-top: 30px;"></div>
547 <div class="author-card2">
548 <div class="row"><div class="col-12" style="display: flex; justify-content: center;"><div class="media_block1" style="padding: 1rem; margin-top: 15px;"><a style="width: 140px; display: flex; margin: auto;" href="/autor/-/meta/$htmlUtil.escapeURL($elem.friendlyname)" title="$htmlUtil.escape($!articuloAutor.Headline.data)">$!imgAuthor</a><a style="color: black;" href="/autor/-/meta/$htmlUtil.escapeURL($elem.friendlyname)"><p style="font-size: 1.7rem; font-family: 'PT Serif', Georgia, serif; font-weight: 400; line-height: 120%; margin-top: 15px;">$htmlUtil.escape($!articuloAutor.Headline.data)</p></a></div></div></div>
549 <div class="row"><div class="col-12" style="display: flex; justify-content: center; margin-bottom: 30px;"><div class="text_block">#set($authorDescRaw = $!articuloAutor.Text.data)#set($authorDescSafe = $authorDescRaw.replaceAll("(?i)<script[^>]*>.*?</script>", "").replaceAll("(?i)on\\w+\\s*=", "data-removed=").replaceAll("(?i)javascript:", ""))<div class="author-description">$!authorDescSafe</div><div class="row"><div class="col-12" style="display: flex; justify-content: center;">#if($articuloAutor.twitterProfile && $articuloAutor.twitterProfile.data != "")#set($twitterUrl = $articuloAutor.twitterProfile.data.replaceAll("[^a-zA-Z0-9:/._-]", ""))<div style="margin-right: 20px;" class="author-twitter1"><a href="$htmlUtil.escape($twitterUrl)" target="_blank" rel="noopener noreferrer nofollow"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512" style="font-size: 30px;" fill="#FF6600"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg></a></div>#end#if($articuloAutor.emailAutor && $articuloAutor.emailAutor.data != "")#set($emailClean = $articuloAutor.emailAutor.data.replaceAll("[^a-zA-Z0-9@._-]", ""))<div class="author-email1"><a href="mailto:$htmlUtil.escape($emailClean)"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512" style="font-size: 30px;" fill="#FF6600"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg></a></div>#end</div></div></div></div></div>
550 </div>
551 #end
552 #end
553 #end
554 #end
555
556 <div class="ComentariosDR" id="eww-comments" style="display:none;"></div>
557
558 #if($Generic && $Generic.getSiblings().size() > 0)
559 <ul class="generic">
560 #foreach($el in $Generic.getSiblings())
561 <li><span class="icon"></span><a href="$htmlUtil.escape($!el.Document.data)">$htmlUtil.escape($!el.data) ($htmlUtil.escape($el.Extension.data))</a></li>
562 #end
563 </ul>
564 #end
565
566 #set($urlLink = $articleToolbox.getTag(null,"linkURL"))
567 #set($titleLink = $articleToolbox.getTag(null,"linkTitle"))
568 #if(($urlLink && $urlLink.data != "") && ($titleLink && $titleLink.data != ""))
569 #set($urlLinkClean = $urlLink.data.replaceAll("[<>\"']", ""))
570 <a class="ext_link" href="$htmlUtil.escape($urlLinkClean)" target="_blank" rel="nofollow noopener noreferrer"><strong>$htmlUtil.escape($!titleLink.data)</strong></a>
571 #end
572
573 #if($linkIntTitle && $linkIntTitle.getSiblings().size() > 0)
574 <div class="link_tpi">
575 <div class="head_int"><span class="icon"></span> TE PUEDE INTERESAR: </div>
576 #foreach($el in $linkIntTitle.getSiblings())
577 #set($intUrlClean = $el.linkIntURL.data.replaceAll("[<>\"']", ""))
578 <div class="item_int"><a href="$htmlUtil.escape($intUrlClean)">$htmlUtil.escape($!el.data)</a></div>
579 #end
580 </div>
581 #end
582 </div>
583 </div>
584 </div>
585
586 <div class="col-60-40-top-two-col col-xs-12 col-md-4 col-lg-4 portlet-column nopadding" id="col-60-40-top-two-col">
587 <div id="" class="portlet-boundary portlet-static-end htmlcontainer-portlet block_newsletter"><div class="move-from-a"><h2 hidden class="sectiondestacadas">Encuesta Vanguardia</h2><div hidden id="encuesta-container" style="margin-bottom: 40px; margin-top: 40px;"></div></div></div>
588 <div class="ranking_infinity lateral_secc c004_003"></div>
589 </div>
590 </div>
591 </article>
592</div>
593</div>
594<div class="cl"></div>
595
596#set($urlExterna = $articleToolbox.getTag(null,"URLCanonical"))
597#if($urlExterna && $urlExterna.data != "")
598 #set($urlExternaData = $urlExterna.data)
599 #set($urlExternaData = $urlExternaData.replaceAll("<.*?>",""))
600 #set($urlExternaData = $urlExternaData.replaceAll("[\"']",""))
601 #set($linkCanonical = {})
602 #set($temp = $linkCanonical.put("rel","canonical"))
603 #set($temp = $linkCanonical.put("href",$htmlUtil.escape($urlExternaData)))
604 $iterVelocityTools.addLinkTag($linkCanonical)
605 #set($urlmrf = "#siteUrl()$url_actual")
606 #set($linkCanonical2 = {})
607 #set($temp = $linkCanonical2.put("property","mrf:canonical"))
608 #set($temp = $linkCanonical2.put("content",$htmlUtil.escape($urlmrf)))
609 $iterVelocityTools.addMetaTag($linkCanonical2)
610#end
611
612<script>
613document.addEventListener("DOMContentLoaded",function(){var pageTitle="$!{titleClean}";document.querySelectorAll('img:not([alt]), img[alt=""]').forEach(function(img){img.setAttribute('alt',pageTitle);});document.querySelectorAll('img:not([title]), img[title=""]').forEach(function(img){img.setAttribute('title',pageTitle);});var mainImg=document.querySelector('.image_main img');if(mainImg){mainImg.setAttribute('loading','eager');mainImg.setAttribute('fetchpriority','high');mainImg.removeAttribute('decoding');}document.querySelectorAll('.block_Parrafo_Lista').forEach(function(block){block.querySelectorAll('p').forEach(function(paragraph){if(paragraph.innerHTML.trim()===''){paragraph.style.height='20px';paragraph.style.display='block';}var boldElement=paragraph.querySelector('b');if(boldElement&&boldElement.innerHTML.trim()===''){boldElement.style.height='20px';boldElement.style.display='block';}});});if(document.body.hasAttribute('itemscope')){document.body.removeAttribute('itemscope');document.body.removeAttribute('itemtype');}document.querySelectorAll('[itemprop]').forEach(function(el){el.removeAttribute('itemprop');el.removeAttribute('itemscope');el.removeAttribute('itemtype');});document.querySelectorAll('script[type="application/ld+json"]').forEach(function(script){var content=script.textContent||"";if(script.id!=='vangdata-schema-newsarticle'&&(content.includes('"NewsArticle"')||content.includes('"Article"'))){script.remove();}});document.querySelectorAll('iframe').forEach(function(oldIframe){var src=oldIframe.src||oldIframe.getAttribute('data-src')||'';if(src.indexOf('youtube.com')>-1||src.indexOf('youtu.be')>-1){var newIframe=document.createElement('iframe');newIframe.src=src;newIframe.width=oldIframe.width||'100%';newIframe.height=oldIframe.height||'315';newIframe.frameBorder='0';newIframe.setAttribute('loading','lazy');newIframe.setAttribute('referrerpolicy','strict-origin-when-cross-origin');newIframe.setAttribute('allow','accelerometer;autoplay;clipboard-write;encrypted-media;gyroscope;picture-in-picture;web-share');newIframe.setAttribute('allowfullscreen','');newIframe.style.cssText=oldIframe.style.cssText||'max-width:100%;';if(oldIframe.className)newIframe.className=oldIframe.className;oldIframe.parentNode.replaceChild(newIframe,oldIframe);}});if(typeof isMobileEnvironment!=='undefined'&&isMobileEnvironment===false){var target=document.querySelector(".ranking_infinity");var source=document.querySelector(".infinity_ranking .iter-tabview-content");if(target&&source)target.innerHTML=source.innerHTML;}});
614window.addEventListener('scroll',function(){var menu=document.querySelector('.menu-principal-header.desktop');if(menu){menu.classList.toggle('fixed',window.scrollY>0);}});
615</script> NUESTRO CONTENIDO PREMIUM