Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> texto [in template "20101#20128#ADIF-DETALLE-ESTACION-TEMPLATE" at line 20, column 22] ---- 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: #if texto.getData()?? && texto.getDat... [in template "20101#20128#ADIF-DETALLE-ESTACION-TEMPLATE" at line 20, column 17] ----
1<div class="detalle-estacion">
2 <header class="adif-encabezado">
3 <@adif.header title=titulo.getData()/>
4 <#if subtitulo?? && subtitulo.getData()?? && subtitulo.getData() != "">
5 <h2>${subtitulo.getData()}</h2>
6 </#if>
7 </header>
8
9 <div class="parrafos-contenido-generico px-0 col-12">
10 <div class="imagen-parrafo-cg">
11 <#if imagenDetalle?? && imagenDetalle.getData()?? && imagenDetalle.getData() != "">
12 <div class="imagen-cuerpo-izquierda">
13 <img alt="${imagenDetalle.getAttribute("alt")}" data-fileentryid="${imagenDetalle.getAttribute("fileEntryId")}" src="${imagenDetalle.getData()}" />
14 </div>
15 <#else>
16 <div class="imagen-cuerpo-izquierda">
17 <img alt="imagen generica de la estación" src="${themeDisplay.getPathThemeImages()}/generica-estacion.png"/>
18 </div>
19 </#if>
20 <#if texto.getData()?? && texto.getData() != "">
21 <div role="paragraph" class="textoSeccion text-left">${texto.getData()}</div>
22 <#else>
23 <div role="paragraph" class="textoSeccion text-left">
24 <p><@liferay.language key='es.adif.estacion.generica-texto1' /></p>
25 <p><@liferay.language key='es.adif.estacion.generica-texto2' /></p>
26 </div>
27 </#if>
28 </div>
29 </div>
30<div>