Nosotros
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> Titulo [in template "40699187#40699226#P_NOSOTROS" at line 3, column 15] ---- 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: ${Titulo.getData()} [in template "40699187#40699226#P_NOSOTROS" at line 3, column 13] ----
1<div class="nosotros">
2 <div class="info">
3 <h1>${Titulo.getData()}</h1>
4 <hr />
5 <span>${Cuerpo.getData()?replace("\n","<br>")}</span>
6 </div>
7 <#if (Fondo.getData())?? && Fondo.getData() != "">
8 <img alt="${Fondo.getAttribute("alt")}" src="${Fondo.getData()}" />
9 </#if>
10 <#if (FondoMobile.getData())?? && FondoMobile.getData() != "">
11 <img alt="${FondoMobile.getAttribute("alt")}" class="mobile" src="${FondoMobile.getData()}" />
12 </#if>
13</div>