Learn from, Hossam Abdelgelil, how to talk business and work your way around technology.

Working in a Corporate Telecom is every Data Scientist's dream. Hear it from our very own Sameh Mostafa!

At Vodafone, when it's playtime, titles don't matter. Listen to what Mora Hakim says about our culture

Ever wondered the logic behind recharge cards? Hana Mahmoud will walk us through her experience with the Charging team

What's it like to work at a Corporate but with a Startup vibe ? Learn it first hand from Youssef Tawfik.

An error occurred while processing the template.
The following has evaluated to null or missing:
==> sectionTargetName  [in template "20116#20160#6974745" at line 3, column 129]

----
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: #if sectionTargetName.getData()?has_c...  [in template "20116#20160#6974745" at line 3, column 124]
----
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 --------->