Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> customAmImageUtil [in template "975784#975823#4813062" at line 31, column 76]
----
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: #assign imgHtml = customAmImageUtil.c... [in template "975784#975823#4813062" at line 31, column 57]
----
1<#if TiposEnlaces.getSiblings()?has_content >
2 <div class="mj-flex-center flex-2-col">
3 <#list TiposEnlaces.getSiblings() as cur_TipoEnlace>
4
5 <#if (cur_TipoEnlace.URLExternaGrupo.URLExterna.getData()?? && cur_TipoEnlace.URLExternaGrupo.URLExterna.getData() != "")>
6 <a href="${cur_TipoEnlace.URLExternaGrupo.URLExterna.getData()}" class="featured__card">
7 <#if (cur_TipoEnlace.Imagen.getData())?? && cur_TipoEnlace.Imagen.getData() != "">
8 <div class="featured__card--icon">
9 <#assign pictureAttributesKeyValue = {} />
10 <#assign imgAttributesKeyValue = { "class": "mj-cardhover--simple__icon", "alt": cur_TipoEnlace.Imagen.getAttribute("alt") } />
11 <#assign imgHtml = customAmImageUtil.createAMImageByFileEntryId(cur_TipoEnlace.Imagen.getAttribute("fileEntryId"),500,pictureAttributesKeyValue,imgAttributesKeyValue)/>
12 ${imgHtml}
13 </div>
14 </#if>
15 <#if (TiposEnlaces.URLExternaGrupo.TituloURLExterna.getData())??>
16 <div class="featured__card--title">
17 <span>${TiposEnlaces.URLExternaGrupo.TituloURLExterna.getData()}</span>
18 </div>
19 </#if>
20 </a>
21 </#if>
22
23 <#assign enlaceAPaginaData = jsonFactoryUtil.createJSONObject(cur_TipoEnlace.EnlaceAPgina.getData()) />
24
25 <#if enlaceAPaginaData?? && enlaceAPaginaData.title??>
26 <a href="${cur_TipoEnlace.EnlaceAPgina.getFriendlyUrl()}" class="featured__card">
27 <#if (cur_TipoEnlace.Imagen.getData())?? && cur_TipoEnlace.Imagen.getData() != "">
28 <div class="featured__card--icon">
29 <#assign pictureAttributesKeyValue = {} />
30 <#assign imgAttributesKeyValue = { "class": "mj-cardhover--simple__icon", "alt": cur_TipoEnlace.Imagen.getAttribute("alt") } />
31 <#assign imgHtml = customAmImageUtil.createAMImageByFileEntryId(cur_TipoEnlace.Imagen.getAttribute("fileEntryId"),500,pictureAttributesKeyValue,imgAttributesKeyValue)/>
32 ${imgHtml}
33 </div>
34 </#if>
35 <div class="featured__card--title">
36 <span>${enlaceAPaginaData.title}</span>
37 </div>
38 </a>
39 </#if>
40
41 <#assign webContentData = jsonFactoryUtil.createJSONObject(cur_TipoEnlace.EnlaceAContenido.getData()) />
42
43 <#if webContentData?? && webContentData.title??>
44 <a href="${cur_TipoEnlace.EnlaceAContenido.getFriendlyUrl()}" class="featured__card">
45 <#if (cur_TipoEnlace.Imagen.getData())?? && cur_TipoEnlace.Imagen.getData() != "">
46 <div class="featured__card--icon">
47 <#assign pictureAttributesKeyValue = {} />
48 <#assign imgAttributesKeyValue = { "class": "mj-cardhover--simple__icon", "alt": cur_TipoEnlace.Imagen.getAttribute("alt") } />
49 <#assign imgHtml = customAmImageUtil.createAMImageByFileEntryId(cur_TipoEnlace.Imagen.getAttribute("fileEntryId"),500,pictureAttributesKeyValue,imgAttributesKeyValue)/>
50 ${imgHtml}
51 </div>
52 </#if>
53 <div class="featured__card--title">
54 <span>${webContentData.title}</span>
55 </div>
56 </a>
57 </#if>
58 </#list>
59 </div>
60</#if>


