Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> ImagenPrincipal.getAttribute("alt")  [in template "184978018#184978059#48431" at line 9, column 21]

----
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: ${ImagenPrincipal.getAttribute("alt")}  [in template "184978018#184978059#48431" at line 9, column 19]
----
1<div class="biosimilares"> 
2    <#assign backgroundImage = ""/> 
3 
4    <#if ImagenPrincipal.getData()?? && ImagenPrincipal.getData() != ""> 
5        <#assign backgroundImage = ImagenPrincipal.getData() /> 
6    </#if> 
7 
8    <div class="news_details"> 
9        <img alt="${ImagenPrincipal.getAttribute("alt")}" src="${backgroundImage}" class="image-new img-responsive" /> 
10        <h1>${Titulo.getData()}</h1> 
11        <#if Entradilla.getData()?? && Entradilla.getData() != ""> 
12            <#-- <h2>${htmlUtil.extractText(Entradilla.getData())}</h2> --> 
13            <h2>${Entradilla.getData()}</h2> 
14        </#if> 
15 
16        <#if TituloSeccion.getSiblings()?has_content> 
17            <#list TituloSeccion.getSiblings() as cur_SeccionesTitulo> 
18                <#if cur_SeccionesTitulo.ImagenSeccion.getData()?? && cur_SeccionesTitulo.ImagenSeccion.getData() != ""> 
19                    <#-- <h3>${htmlUtil.extractText(cur_SeccionesTitulo.getData())}</h3> --> 
20                    <h3>${cur_SeccionesTitulo.getData()}</h3> 
21                    <p> 
22                        <img alt="${cur_SeccionesTitulo.ImagenSeccion.getAttribute("alt")}" src="${cur_SeccionesTitulo.ImagenSeccion.getData()}" class="apoyo_texto" /> 
23                        ${cur_SeccionesTitulo.TextoSeccion.getData()} 
24                    </p> 
25                <#else> 
26                    <#-- <h3>${htmlUtil.extractText(cur_SeccionesTitulo.getData())}</h3> --> 
27                    <h3>${cur_SeccionesTitulo.getData()}</h3> 
28                    ${cur_SeccionesTitulo.TextoSeccion.getData()} 
29                </#if> 
30            </#list> 
31        </#if> 
32    </div> 
33</div>