Publicadas las fechas del proceso de admisión a las enseñanzas deportivas - Publicadas las fechas del proceso de admisión a las enseñanzas deportivas - Dpto
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> imagen.getAttribute("fileEntryId") [in template "10154#10192#265039" at line 22, column 56] ---- Tip: If the failing expression is known to be 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: ${imagen.getAttribute("fileEntryId")} [in template "10154#10192#265039" at line 22, column 54] ----
1<#assign displayDate = .vars['reserved-article-display-date'].data>
2
3<#setting time_zone = languageUtil.get(locale, "template-timezone")>
4
5<#assign originalLocale = locale>
6
7<#setting locale = localeUtil.getDefault()>
8
9<#assign displayDate = displayDate?datetime("EEE, d MMM yyyy HH:mm:ss Z")>
10
11<#setting locale = originalLocale>
12
13<#assign dateFormat = "yyyy/MM/dd">
14
15<#assign displayDate = displayDate?string(dateFormat) />
16
17<div class="noticia">
18<p>${displayDate}</p>
19
20<#if imagen.getData()?? && imagen.getData() != "">
21<a href="${imagen.getData()}">
22 <img class="foto-noticia" data-fileentryid="${imagen.getAttribute("fileEntryId")}" alt="${imagen.getAttribute("alt")}" src="${imagen.getData()}" />
23</a>
24<#if piedefoto??>
25<#if piedefoto.getData()?? && piedefoto.getData() != "">
26<p class="pie-foto">${piedefoto.getData()}</p>
27</#if>
28</#if>
29</#if>
30
31
32${descripcion.getData()}
33
34<p class="contacto-noticia">
35<#if contactonombre.getData()?has_content >
36<strong><@liferay.language key="contact" /></strong>: ${contactonombre.getData()}<br>
37</#if>
38<#if contactoemail.getData()?has_content >
39<strong><@liferay.language key="email" /></strong>: ${contactoemail.getData()}<br>
40</#if>
41<#if contactotelefono.getData()?has_content >
42<strong><@liferay.language key="phone" /></strong>:${contactotelefono.getData()}
43</#if>
44
45</div>