template-browser-not-supported

Departamento de Ciencias de la Educación

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> enlace.enlaceTexto  [in template "38642#38670#894780" at line 73, column 92]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: ${enlace.enlaceTexto.getData()}  [in template "38642#38670#894780" at line 73, column 90]
----
1<#assign date=.vars["reserved-article-display-date"].data /> 
2<#assign dateFormatted = journalTool.getDateFormat(date, "dd MMMM yyyy", locale, timezone)> 
3 
4<div class="novedad mt-3"> 
5    <h3>${Titulo.getData()}</h3> 
6 
7    <div class="date-wrapper text-metadata mb-3 mt-4"> 
8		<span class="icon-calendar"><span class="hide-accessible"><@liferay.language key="date" /></span>&nbsp;</span><span class="date">${dateFormatted}</span> 
9	</div> 
10 
11	<div class="cabeceraNoticia"> 
12		<#if (Resumen.getData()?trim != "") > 
13			 <p class="resumen">${Resumen.getData()}</p> 
14		</#if> 
15		 
16		<div class="imagen"> 
17			<#if (validator.isNotNull(Imagen.getSiblings()) && validator.isNotNull(Imagen.getSiblings()[0]) && Imagen.getSiblings()[0].getData()?trim != "") > 
18				<a href="${Imagen.getSiblings()[0].getData()}" rel="prettyPhoto[gal_noticia]"> 
19					<img src="${Imagen.getSiblings()[0].getData()}" alt="${Imagen.getSiblings()[0].Texto_alternativo.getData()}" /> 
20				</a> 
21			</#if> 
22		</div> 
23	</div> 
24	 
25    <#if (Contenido.getData()?trim != "") > 
26        <div class="contenidoNoticia">${Contenido.getData()}</div> 
27    </#if> 
28 
29    <#if (validator.isNotNull(Imagen.getSiblings())) > 
30        <#if (Imagen.getSiblings()?size > 1) > 
31            <#if (Imagen.getSiblings()[1]) > 
32            	<#if (Imagen.getSiblings()[1].getData()) > 
33                	<#if (Imagen.getSiblings()[1].getData()?trim != "") > 
34                    	<div class="imagenes"> 
35                        	<h4>${languageUtil.get(locale,"portaleswebuniovi.mas-imagenes")}:</h4> 
36                        	<ul> 
37                            	<#assign indice = 0 > 
38                            	<#list Imagen.getSiblings() as imagenx > 
39                                	<#if (indice != 0) > 
40										<li> 
41											<a href="${imagenx.getData()}" rel="prettyPhoto[gal_noticia]"> 
42												<img alt="${imagenx.Texto_alternativo.getData()}" src="${imagenx.getData()}"/> 
43											</a> 
44										</li>	 
45                                	</#if> 
46                                	<#assign indice = indice + 1 > 
47                            	</#list> 
48                        	</ul> 
49                    	</div> 
50                    </#if> 
51                </#if> 
52            </#if> 
53        </#if> 
54    </#if> 
55	 
56	<#if (Documento.getSiblings()[0].getData()?trim != "") > 
57		<div class="documentos"> 
58			<h4>${languageUtil.get(locale,"portaleswebuniovi.documentos_relacionados")}:</h4> 
59			<ul> 
60				<#list Documento.getSiblings() as documento > 
61			  		<li><a href="$htmlUtil.escape($documento.getData())" title="$documento.Texto.getData()">${documento.Texto.getData()}</a></li> 
62				</#list> 
63			</ul> 
64		</div> 
65	</#if> 
66	 
67	<#if (Enlace.getSiblings()[0].getData()?trim != "") > 
68		<div class="enlaces"> 
69			<h4>${languageUtil.get(locale,"portaleswebuniovi.enlacesrelacionados")}:</h4> 
70			<ul> 
71				<#if (Enlace.getSiblings()[0].getData()?trim != "") > 
72					<#list Enlace.getSiblings() as enlace > 
73						<li><a href="${enlace.getData()}" title="${enlace.enlaceTexto.getData()}">${enlace.enlaceTexto.getData()}</a></li> 
74					</#list> 
75				</#if> 
76			</ul> 
77		</div> 
78	</#if>	 
79 
80</div>