Dubai Cultural Journey

An error occurred while processing the template.
The following has evaluated to null or missing:
==> playStoreIconImage  [in template "20099#20136#36788" at line 66, column 85]

----
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: ${playStoreIconImage.getData()}  [in template "20099#20136#36788" at line 66, column 83]
----
1<style> 
2	.c-download__img { 
3		transform: none; 
4		width: 100%; 
5		left: auto; 
6		right: auto; 
7		top: -40%; 
8
9	 
10	.c-download__stores-logo { 
11	    border: 1px solid black; 
12		border-radius: 5px; 
13		padding: 4px; 
14		height: 45px; 
15
16	 
17	.c-download__stores { 
18		position: absolute; 
19		left: 30%; 
20
21	 
22	.rtl .c-download__img { 
23		transform: none; 
24
25	 
26	.rtl .c-download__img { 
27		top: -50%; 
28
29	 
30	@media (max-width: 480px) { 
31		.c-download__stores-logo { 
32			height: 25px; 
33
34		 
35	    .c-download__img { 
36		    top: -45%; 
37
38	     
39	    .rtl .c-download__img { 
40		    top: -45%; 
41
42
43	 
44	@media (min-width: 1281px) { 
45		.c-download__img { 
46			top: -50%; 
47
48		 
49		.c-download__stores { 
50			bottom: -45%; 
51
52
53</style> 
54 
55<div class="c-download o-comp"> 
56	<div class="c-download__content o-comp__content"> 
57		<div class="c-download__wrapper col-lg-18 col-lg-push-3 col-md-22 col-md-push-1 col-xs-24 col-xs-push-0"> 
58			<div class="o-comp__section-title-holder"> 
59				<h2 class="o-comp__section-title -color-white">${title.getData()}</h2> 
60			</div> 
61			<div class="c-download__section-subtext -color-white"> 
62				${subTitle.getData()} 
63			</div> 
64			<div class="c-download__stores "> 
65				<a href="${androidAppDownloadURL.getData()}" target="_blank" class="c-download__stores-link"> 
66					<img class="c-download__stores-logo" src="${playStoreIconImage.getData()}" alt= "<@liferay.language key="mbrl.module.common.play-store" />"> 
67				</a> 
68				<a href="${appDownloadURL.getData()}" target="_blank" class="c-download__stores-link" > 
69					<img class="c-download__stores-logo" src= "${appStoreIconImage.getData()}" alt= "<@liferay.language key="mbrl.module.common.app-store" />"> 
70				</a> 
71			</div> 
72			<div class="c-download__img-wrapper "> 
73				<img class="c-download__img" src="${imageIllustration.getData()}" alt="${title.getData()}"> 
74			</div> 
75		</div> 
76	</div> 
77</div>