O eroare a apărut în timpul procesării șablonului.
The following has evaluated to null or missing:
==> arrowExp  [in template "12187455#12187494#15624481" at line 33, column 78]

----
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: ${arrowExp}  [in template "12187455#12187494#15624481" at line 33, column 76]
----
1<#assign classExp=''> 
2<#if getterUtil.getBoolean(expandido.getData())> 
3	<#assign classExp= 'expandContent'> 
4</#if> 
5<#if locale == "es_ES"> 
6	<#assign target = "(Se abre en una nueva ventana)"> 
7	<#assign arrowExp = "Expandir"> 
8	<#assign arrowText = "Contraer"> 
9<#elseif locale ==  "en_US"> 
10	<#assign target = "(Opens in new window)"> 
11	<#assign arrowExp = "Expand"> 
12	<#assign arrowText = "Collapse"> 
13<#elseif locale ==  "pt_PT"> 
14	<#assign target = "(Abre em uma nova janela)"> 
15	<#assign arrowExp = "Expandir"> 
16	<#assign arrowText = "Recolher"> 
17<#elseif locale ==  "gl_ES"> 
18	<#assign target = "(Ábrese nunha nova ventá)"> 
19	<#assign arrowExp = "Expandir"> 
20	<#assign arrowText = "Recoller"> 
21<#elseif locale ==  "ca_ES"> 
22	<#assign target = "(S’obre en una nova finestra)"> 
23	<#assign arrowExp = "Expandir"> 
24	<#assign arrowText = "Contraure"> 
25<#elseif locale ==  "fr_FR"> 
26	<#assign target = "(S’ouvre dans une nouvelle fenêtre)"> 
27	<#assign arrowExp = "Développer"> 
28	<#assign arrowText = "Réduire"> 
29</#if> 
30<#assign id = .vars['reserved-article-id'].data>  
31<div class="info_interior_listado .info_politicas ${classExp}"> 
32	<#if validator.isNotNull(titulo.getData())> 
33		<a href="#" class="cont_titulo" onclick="spanText('${id}','${arrowExp}','{$arrowText')" title="${titulo.getData()}"> 
34			<h3>${titulo.getData()}</h3> 
35			<#if getterUtil.getBoolean(expandido.getData())== true> 
36				<span class='sr-only'id="expand-contr-${id}">${arrowText}</span> 
37			<#else> 
38				<span class='sr-only'id="expand-contr-${id}">${arrowExp}</span> 
39			</#if> 
40			<span class="icon_arrow"></span> 
41		</a>	 
42	</#if> 
43	<ul style="list-style: none;"> 
44		<#if nombreDocumento.getSiblings()?has_content> 
45			<li> 
46				<div class="cont_tituloDoc"> 
47					<ul> 
48						<#list nombreDocumento.getSiblings() as cur_nombreDocumento> 
49							<li class="cont_enlace"> 
50								<#if validator.isNotNull(cur_nombreDocumento.enlace.getData())> 
51									<div class="cont_tituloDoc"> 
52										<span class="fcc-stop2">&nbsp;</span> 
53										<a href="${cur_nombreDocumento.enlace.getData()}" target="_BLANK"> 
54											${cur_nombreDocumento.getData()} 
55										</a> 
56									</div> 
57								<#elseif cur_nombreDocumento.documento.getSiblings()?has_content> 
58									<div class="cont_tituloDoc"> 
59										<span class="fcc-stop2">&nbsp;</span> 
60										<a data-target="#modal${cur_nombreDocumento?index}" data-toggle="modal" href="javascript:void(0)"> 
61											${cur_nombreDocumento.getData()} 
62										</a> 
63									</div> 
64									<div class="modal fade" id="modal${cur_nombreDocumento?index}" role="dialog" style="display: none;" aria-hidden="true"> 
65										<div class="modal-dialog"> 
66											<div class="modal-content"> 
67												<div class="modal-body" style="overflow-y: scroll"> 
68													<div class="modal-header"> 
69														<h4><strong>${cur_nombreDocumento.getData()}</strong></h4> 
70													</div> 
71													<ul style="list-style: none;margin-left: 1rem;"> 
72														<#list cur_nombreDocumento.documento.getSiblings() as cur_nombreDocumento_documento> 
73															<li> 
74																<a href="${cur_nombreDocumento_documento.getData()}" target="_blank"> 
75																	<img alt="pdf" src="/documents/12187494/13937324/iconopdf.jpg/dce93862-0422-f7e5-3cbc-1652bd9f6560?t=1520431755000"> 
76																	<#if validator.isNotNull(cur_nombreDocumento_documento.tituloDoc.getData())> 
77																		${cur_nombreDocumento_documento.tituloDoc.getData()} 
78																	<#else> 
79																		${cur_nombreDocumento.getData()} 
80																	</#if> 
81																</a> 
82															</li> 
83														</#list> 
84													</ul> 
85												</div> 
86												<div class="modal-footer"> 
87													<div class="texto-inferior-footer">&nbsp;</div> 
88													<strong> 
89														<button class="abtn" data-dismiss="modal" type="button">Cerrar</button> 
90													</strong> 
91												</div> 
92											</div> 
93										</div> 
94									</div> 
95								</#if> 
96							</li> 
97						</#list> 
98					</ul> 
99				</div> 
100			</li> 
101		</#if> 
102	</ul> 
103</div>