FAMILIAS

Al pensar en infancia, inevitablemente se piensa en las familias. Una de sus labores fundamentales es acompañar a niños y niñas desde el ejercicio de una parentalidad positiva.

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> url  [in template "48155#48801#6555524" at line 29, column 40]

----
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: ${url}  [in template "48155#48801#6555524" at line 29, column 38]
----
1<div class="list-wrapper"> 
2    <#if (Titulo.getData())?? && Titulo.getData() != ""> 
3        <div class="list-title"> 
4            <h3>${Titulo.getData()}</h3> 
5        </div> 
6    </#if> 
7    <#if (Descripcion.getData())?? && Descripcion.getData() != ""> 
8        <div class="list-description"> 
9            ${Descripcion.getData()} 
10        </div> 
11    </#if> 
12    <#if NombreBloque.getSiblings()?has_content> 
13        <#list NombreBloque.getSiblings() as cur_NombreBloque>      
14            <div class="list-content"> 
15                <div class="list-content-tile"> 
16                    <p>${cur_NombreBloque.getData()}</p> 
17                </div> 
18                <#if cur_NombreBloque.bloquerepetible.getSiblings()?has_content> 
19                    <ul> 
20                    <#list cur_NombreBloque.bloquerepetible.getSiblings() as cur_bloqueRepetible> 
21                        <#if (cur_bloqueRepetible.URLExterna.getData())?? && cur_bloqueRepetible.URLExterna.getData() != ""> 
22                            <#assign url = cur_bloqueRepetible.URLExterna.getData() > 
23                            <#assign target = "_blank"> 
24                        <#elseif (cur_bloqueRepetible.URLInterna.getData())?? && cur_bloqueRepetible.URLInterna.getData() != ""> 
25                            <#assign url = cur_bloqueRepetible.URLInterna.getFriendlyUrl() > 
26                            <#assign target = "_self"> 
27                        </#if> 
28                        <li class="list-without-dots"> 
29                            <a href="${url}" target="${target}">     
30                                <#if (cur_bloqueRepetible.Icono.getData())?? && cur_bloqueRepetible.Icono.getData() != ""> 
31                                <div class="list-content-icon"> 
32                                    <img alt="${cur_bloqueRepetible.Icono.getAttribute("alt")}" data-fileentryid="${cur_bloqueRepetible.Icono.getAttribute("fileEntryId")}" src="${cur_bloqueRepetible.Icono.getData()}" /> 
33                                </div> 
34                                </#if> 
35                                <span>${cur_bloqueRepetible.TextoEnlace.getData()}</span> 
36                            </a> 
37                        </li> 
38                    </#list> 
39                    </ul> 
40                </#if> 
41            </div> 
42        </#list> 
43    </#if> 
44</div>