Search
Asset Publisher
An error occurred while processing the template.
The following has evaluated to null or missing: ==> spotLink [in template "836286#836325#925601" at line 2, column 44] ---- 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: ${spotLink.getData()} [in template "836286#836325#925601" at line 2, column 42] ----
1<link href="//cdn.axiell.com/arena/liferay-spots.css" rel="stylesheet" type="text/css" />
2<a class="spot-wrapper three-spot" href="${spotLink.getData()}">
3<#if spotLink.spotImg.getData()?has_content>
4 <div class="spot-image">
5 <img src="${spotLink.spotImg.getData()}" alt="${spotLink.spotImg.spotImgAlt.getData()}">
6 </div>
7</#if>
8 <div class="spot-inner-wrapper">
9 <#if spotLink.spotTitle.getData()?has_content>
10 <div class="spot-title"><h2>${spotLink.spotTitle.getData()}</h2></div>
11 </#if>
12 <#if spotLink.spotTextArea.getData()?has_content>
13 <div class="spot-text-area">${spotLink.spotTextArea.getData()}</div>
14 </#if>
15 </div>
16</a>