null
Atrás

Recargas Banco Guayaquil

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> cur_step.image.getAttribute("alt")  [in template "33501#33537#65058" at line 38, column 77]

----
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: ${cur_step.image.getAttribute("alt")}  [in template "33501#33537#65058" at line 38, column 75]
----
1<#-- 
2Last update: 08/02/2019 
3 
4Web content templates are used to lay out the fields defined in a web 
5content structure. 
6 
7Please use the left panel to quickly add commonly used variables. 
8Autocomplete is also available and can be invoked by typing "${". 
9--> 
10 
11<#-- variables de Configuracion de tamaño texto--> 
12 
13  <#assign  titleLenght = 100> 
14  <#assign  titleText   = 100> 
15   
16  <#assign listaLenght = 100> 
17  <#assign listaText   = 100> 
18   
19<#----------------------------------------------> 
20 
21 
22<div class="section-step-recharge bg-light-grey-1 row"> 
23	<div class="container container-section"> 
24		<div class="content"> 
25		    <article>  
26    		    <#if title.getData()?has_content> 
27    		       <#if title.getData()?length lt titleLenght> 
28    		  	<h2>${title.getData()}</h2> 
29              <#else> 
30              <h2>${title.getData()?substring(0,titleText)}</h2> 
31             </#if> 
32            </#if>  
33    			<#if steps.getSiblings()?has_content> 
34    				<ul class="list-step"> 
35    					<#list steps.getSiblings() as cur_step> 
36    						<li class="step"> 
37    							<div class="img-step"> 
38    								<img alt="${cur_step.image.getAttribute("alt")}" title="${cur_step.image.titleimg.getData()}" data-fileentryid="${cur_step.image.getAttribute("fileEntryId")}" src="${cur_step.image.getData()}" /> 
39    							</div> 
40     
41    							<div class="step-text"> 
42    								<#if steps.steptitle?has_content> 
43    									<h3 class="text-step bold">${cur_step.steptitle.getData()} </h3> 
44    								</#if> 
45    		                	<#if cur_step.description.getData()?has_content> 
46                             <#if cur_step.description.getData()? length lt listaLenght > 
47    	                 <p class="text-step">${cur_step.description.getData()}</p>  
48    	                  <#else> 
49    	   	             <p class="text-step">${cur_step.description.getData()? substring (0,listaText)}</p>  
50    	                               </#if > 
51    	                           </#if > 
52    							</div> 
53    						</li> 
54    					</#list> 
55    				</ul> 
56    			</#if> 
57    		</article>  
58		</div> 
59	</div> 
60</div>