Errorea gertatu da txantiloia prozesatzerakoan.
The following has evaluated to null or missing:
==> (info_publico.getChildren())[1]  [in template "2907967#2908013#160664" at line 4, column 29]

----
Tip: It's the final [] step that caused this error, not those before it.
----
Tip: If the failing expression is known to be 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 sol_info_publica = (info_publ...  [in template "2907967#2908013#160664" at line 4, column 1]
----
1<#assign inicio = themeDisplay.getLayout() /> 
2<#assign transparencia = (inicio.getChildren())[0] /> 
3<#assign info_publico = (transparencia.getChildren())[0] /> 
4<#assign sol_info_publica = (info_publico.getChildren())[1] /> 
5 
6<#if layoutPermission.contains(permissionChecker, sol_info_publica.getPlid(), 'VIEW')> 
7 
8    <div class="wrapper info-block"> 
9        <section class="content"> 
10            <div class="col-md-12"> 
11                <#if locale="eu_ES"> 
12                    <h2>Datu gehiago behar duzu&nbsp;?</h2> 
13     
14                    <p>Gogoratu gobernu ireki honen atarian jasotzen ez diren bestelako datu eta dokumentuak eskuratzeko eskubidea bete dezakezula.</p> 
15     
16                    <div class="btn-group"> 
17                        <a class="btn btn-primary" href="/eu/informazio-publikoaren-eskaera" title="Informazio eskaera egin">Hasi eskaera egiten</a> 
18                    </div> 
19                <#else> 
20                    <h2>¿ Necesitas más datos&nbsp;?</h2> 
21                 
22                    <p>Recuerda que puedes ejercer tu derecho de acceso a otros datos y documentos que no estén incluidos en este portal de gobierno abierto.</p> 
23                 
24                    <div class="btn-group"> 
25                        <a class="btn btn-primary" href="/es/solicitud-informacion-publica" title="Cómo solicitar información pública">Iniciar solicitud</a> 
26                    </div> 
27                </#if> 
28            </div> 
29        </section> 
30    </div> 
31</#if>