Asset Publisher
An error occurred while processing the template.
The following has evaluated to null or missing:
==> .vars['reserved-article-small-image-url'].data [in template "20099#20135#CAJA-DE-ENLACE-INSTITUCIONAL" at line 2, column 23]
----
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: #assign smallImage = .vars["reserved-... [in template "20099#20135#CAJA-DE-ENLACE-INSTITUCIONAL" at line 2, column 1]
----
1<#assign entryTitle = .vars['reserved-article-title'].data >
2<#assign smallImage = .vars['reserved-article-small-image-url'].data >
3<#assign abstractSummary = .vars['reserved-article-description'].data >
4
5<div class="cajaGris">
6 <#if smallImage?? && smallImage != "">
7 <div><img alt="" src="${smallImage}" /></div>
8 </#if>
9 <div>
10 <#if pagina?? && pagina.getData() != "" && pagina.getFriendlyUrl()?? && pagina.getFriendlyUrl() != "">
11 <a class="titulo" aria-label="${titulo.getData()}" href="${pagina.getFriendlyUrl()}"> ${titulo.getData()} </a>
12 <#elseif paginaExterna?? && paginaExterna.getData() != "">
13 <a class="titulo" aria-label="${titulo.getData()}" href="${paginaExterna.getData()}" target="_blank"> ${titulo.getData()} </a>
14 <#elseif onclick?? && onclick.getData() != "">
15 <a class="titulo" onclick="${onclick.getData()}" aria-label="Preguntas frecuentes en la categoría: ${titulo.getData()}" href="#" > ${titulo.getData()} </a>
16 <#elseif anchor?? && anchor.getData() != "">
17 <a class="titulo" aria-label="Preguntas frecuentes en la categoría: ${titulo.getData()}" href="#${anchor.getData()}" > ${titulo.getData()} </a>
18 <#elseif documento?? && documento.getData() != "">
19 <a class="titulo" aria-label="${languageUtil.format(locale, "download-x", "Documento", false)}: ${titulo.getData()}" href="${documento.getData()}" target="_blank"> ${titulo.getData()} </a>
20 </#if>
21 </div>
22 <#if entradilla?? && entradilla.getData() != "">
23 <div class="entradilla">
24 ${entradilla.getData()}
25 </div>
26 </#if>
27</div>