Assemblea 2018

S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing:
==> responsiveImg  [in template "20116#20152#38881" at line 4, column 6]

----
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: #if responsiveImg.getData()?matches("")  [in template "20116#20152#38881" at line 4, column 1]
----
1<#assign imagesPath = themeDisplay.getPathThemeImages() />	      
2<style> 
3@media ( max-width:600px )  { 
4<#if responsiveImg.getData()?matches("")> 
5<#else> 
6	#m-bg { 
7        background: url(${imagesPath}/bk-0.png) center repeat, url(${responsiveImg.getData()})top center no-repeat!important; 
8        background-size: cover, cover !important; position:relative !important; 
9
10</#if> 
11
12</style> 
13<div class="content"> 
14	<div id= "m-bg" class="bg bg-bk-" style="background: url(${imagesPath}/bk-0.png) center repeat, url(${imagenFondo.getData()}) top center no-repeat; background-size: cover, cover; position:relative;">   
15		<div class="container text-center mv-md"> 
16			<p class="text-white text-md">${Subtitulo.getData()}</p> 
17			<h1 class="text-white text-lg mv-md">${tituloBloque1.getData()}</h1>  
18		</div>  
19	</div> 
20		  
21	<div class="bg bg-blue">  
22		<div class="container text-center"> 
23			<h1 class="text-white">${tituloBloque2.getData()}</h1> 
24			<p class="mt-md">${descripcionBloque2.getData()?replace('<p>','')?replace('</p>','<br/>')}</p> 
25 		</div>  
26	</div> 
27		  
28	<div class="bg bg-white">      
29		<div class="container text-center"> 
30			<div class="tab tab-Documentos" role="tabpanel"> 
31				<ul id="tabs" class="nav" data-tabs="tabs"> 
32                <#if slide.getSiblings()?has_content> 
33                    <#assign contadorTab =1 > 
34                	<#list slide.getSiblings() as cur_slide> 
35						<li role="presentation" class="${(contadorTab == 1)?then('active','')}"> 
36							<a href="#tab_${contadorTab}" aria-controls="tab_${contadorTab}" role="tab" data-toggle="tab" aria-expanded="true"> <img src="${cur_slide.imagenSlide.getData()}"> </br> ${cur_slide.getData()} </a>  
37						</li> 
38						<#assign contadorTab = contadorTab +1 > 
39                	</#list> 
40                </#if> 
41				</ul> 
42 
43                <#if slide.getSiblings()?has_content> 
44                <div id="my-tab-content" class="tab-content"> 
45                    <#assign contadorTab =1 > 
46                	<#list slide.getSiblings() as cur_slide> 
47					<div class="tab-pane fade ${(contadorTab ==1)?then('active in','')}" id="tab_${contadorTab}"> 
48						<h1 class="text-center mv-lg">${cur_slide.nombreSlide.getData()}</h1>  
49					    <#list cur_slide.documentoSlide.getSiblings() as cur_documento> 													<div class="box-6 media"> 
50							<div class="media-left" href="#"> <img src="${cur_slide.iconoDocumentos.getData()}" style="max-width: none;"> </div> 
51							<div class="media-body text-left"> 
52								<p class="text-blue text-md">${cur_documento.getData()}</p>  
53								<p class="underline mb-md">${cur_documento.descripcionDocumento.getData()}</p>   
54 
55								<#if cur_documento.enlaceHtml.getFriendlyUrl()?has_content> 
56									<a class="underline text-blue" href="${cur_documento.enlaceHtml.getFriendlyUrl()}" target="_blank">${languageUtil.format(locale, cur_documento.textoEnlaceDocumento.getData(), false)}</a>  
57								<#elseif cur_documento.archivoDocumento.getData()?has_content > 
58									<a href="${cur_documento.archivoDocumento.getData()}" class="underline text-blue" target="_blank"> 	${languageUtil.format(locale, cur_documento.textoEnlaceDocumento.getData(), false)}</a>  
59								<#elseif cur_documento.enlaceExterno.getData()?has_content > 
60									<a class="underline text-blue" href="${cur_documento.enlaceExterno.getData()}" target="_blank">${languageUtil.format(locale, cur_documento.textoEnlaceDocumento.getData(), false)}</a>  
61								<#elseif cur_documento.textoHTML.getData()?has_content > 
62									<div>${cur_documento.textoHTML.getData()}</div> 
63								</#if> 
64							</div> 
65						</div> 
66						</#list> 
67                		<#assign contadorTab= contadorTab + 1> 
68                	</div> 
69                	</#list> 
70                </div> 
71                </#if> 
72			</div>		 
73		</div> 
74		 
75		<div class="container mt-lg"> 
76			  
77		</div>  
78	</div> 
79</div>