Normativa
An error occurred while processing the template.
The following has evaluated to null or missing: ==> ele.getChild("Imagen").getAttribute("alt") [in template "1390359#1390397#3245336" at line 15, column 41] ---- 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: ${ele.getChild("Imagen").getAttribute... [in template "1390359#1390397#3245336" at line 15, column 39] ----
1<div class="elementos-2-poligonos elementos-3-poligonos container">
2 <#if Elemento.getSiblings()?has_content>
3
4 <!--<div class="row">-->
5 <#list Elemento.getSiblings() as ele>
6
7 <#if (ele_index % 2) == 0>
8 <div class="row fila">
9 </#if>
10
11 <div class="col-xs-12 col-sm-12 col-md-5 <#if (ele_index % 2) == 0> col-md-offset-1</#if> margin-top">
12 <div class="elemento <#if (ele_index % 2) == 0>fondo0<#else>fondo3</#if>">
13
14 <div>
15 <img alt="${ele.getChild("Imagen").getAttribute("alt")}" src="${ele.getChild("Imagen").getData()}" />
16 <h2>${ele.TituloElemento.getData()}</h2>
17 <div class="descripcion">
18 ${ele.Descripcion.getData()}
19 </div>
20 </div>
21 <div class="no-padding">
22 <#list ele.documentos.getSiblings() as documento>
23 <#if !validator.equalsSorted([""], [documento.Documento.getData()]) >
24 <p class="bipo_btn_rojo centrar">
25 <#assign title = 'lan.pdf.title'>
26 <#assign nombreDoc = documento.Documento.getData()>
27 <#assign nombreDoc = nombreDoc?remove_ending("/"+nombreDoc?keep_after_last("/")) >
28 <#assign nombreDoc = nombreDoc?keep_after_last("/")>
29
30 <a href="${documento.getChild("Documento").getData()}" target="_blank" title="${languageUtil.format(locale, title, nombreDoc)}">
31 <#if !validator.equalsSorted([""], [documento.TextoDocumento.getData()]) >
32 <span class="bipoicon icon-documento"></span> ${documento.TextoDocumento.getData()}
33 </#if>
34 </a>
35 </p>
36 </#if>
37 </#list>
38 </div>
39 </div>
40 </div>
41
42 <#assign nextIndex = ele_index + 1>
43 <#if (ele_index % 2) != 0 || ele_nextIndex??>
44 </div>
45 </#if>
46
47 </#list>
48 <!--</div>-->
49
50 </#if>
51</div>