play

استمتع باشتراك مجانى فى WATCHIT وشاهد فى رمضان مع فودافون

حصل خطأ عند معالجة القالب.
The following has evaluated to null or missing:
==> btnText.redirectionMobile.MobileBtnKey  [in template "20116#20160#6974745" at line 56, column 154]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
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: ${btnText.redirectionMobile.MobileBtn...  [in template "20116#20160#6974745" at line 56, column 152]
----
1<!--------- START: Section ---------> 
2<#if sectionBackgroundColor?has_content> 
3<section class="${sectionSize.getData()} bg-${sectionBackgroundColor.getData()} ${sectionTextColor.getData()} text-center" <#if sectionTargetName.getData()?has_content>id="${sectionTargetName.getData()}"</#if>> 
4<#else> 
5<section class="${sectionSize.getData()} bg-white text-center"> 
6</#if> 
7 <#if sectionBackgroundImage.getData()?? && sectionBackgroundImage.getData() != ""> 
8    <div class="section-img-wrapper"> 
9        <img alt="${sectionBackgroundImage.getAttribute("alt")}" class="section-img" data-fileentryid="${sectionBackgroundImage.getAttribute("fileEntryId")}" src="${sectionBackgroundImage.getData()}" /> 
10    </div> 
11    </#if> 
12  <div class="container"> 
13    <div class="row justify-content-center"> 
14      <#if sectionTitle?has_content && sectionTitle.getData()?has_content> 
15        <div class="col-12"> 
16          <div class="section-title"> 
17            <h2 class="h3-2x">${sectionTitle.getData()}</h2> 
18            <#if sectionSubtitle?has_content && sectionSubtitle.getData()?has_content> 
19            <h4 class="section-subtitle">${sectionSubtitle.getData()}</h4> 
20            </#if> 
21          </div> 
22        </div> 
23        <div class="clear"></div> 
24      </#if> 
25			 
26      <div class="col-md-10 text-center"> 
27      <#if paragraphText.getSiblings()?has_content> 
28    	<#list paragraphText.getSiblings() as cur_paragraphText> 
29        	<#if getterUtil.getBoolean(paragraphText.lead.getData())> 
30				<#if cur_paragraphText?is_last> 
31					<p class="lead mb-0 ${cur_paragraphText.paragraphFontType.getData()} color-${cur_paragraphText.paragraphColor.getData()} ${cur_paragraphText.paragraphSize.getData()}"> 
32						${cur_paragraphText.getData()} 
33					</p> 
34				<#else> 
35					<p class="lead ${cur_paragraphText.paragraphFontType.getData()} color-${cur_paragraphText.paragraphColor.getData()} ${cur_paragraphText.paragraphSize.getData()}"> 
36						${cur_paragraphText.getData()} 
37					</p> 
38				</#if> 
39    	    <#else> 
40				<#if cur_paragraphText?is_last> 
41					<p class="mb-0 ${cur_paragraphText.paragraphFontType.getData()} color-${cur_paragraphText.paragraphColor.getData()} ${cur_paragraphText.paragraphSize.getData()}"> 
42						${cur_paragraphText.getData()} 
43					</p> 
44				<#else> 
45					<p class="${cur_paragraphText.paragraphFontType.getData()} color-${cur_paragraphText.paragraphColor.getData()} ${cur_paragraphText.paragraphSize.getData()}"> 
46						${cur_paragraphText.getData()} 
47					</p> 
48				</#if> 
49      </#if> 
50    	 
51    	</#list> 
52      </#if> 
53 
54 
55        <#if btnText.redirectionMobile.getData()?has_content && btnText.redirectionDesktop.getData()?has_content> 
56        <a data-href-mobile="${btnText.redirectionMobile.getData()}" data-href-desktop="${btnText.redirectionDesktop.getData()}" data-tracking-mobile="${btnText.redirectionMobile.MobileBtnKey.getData()}" data-tracking-desktop="${btnText.redirectionDesktop.DesktopBtnKey.getData()}" class="js-tagging-btn btn ${btnText.btnStyle.getData()} mt-4 mb-0" target="_blank">${btnText.getData()}</a> 
57        <#else> 
58            <#if btnText.getData()?has_content>    
59            <a href="<#if btnText.btnLink.getData()?has_content>${btnText.btnLink.getData()}<#else>javascript:;</#if>" class="btn ${btnText.btnStyle.getData()} mt-4 mb-0" target="_blank">${btnText.getData()}</a> 
60          </#if>  
61        </#if>   
62         
63          
64      </div> 
65    </div> 
66  </div> 
67</section> 
68<!--------- END: Section --------->