An error occurred while processing the template.
The following has evaluated to null or missing: ==> RimuoviOmbra [in template "20101#20127#168839" at line 6, column 80] ---- 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: #if getterUtil.getBoolean(RimuoviOmbr... [in template "20101#20127#168839" at line 6, column 53] ----
1<#assign bgcolor = "#ffffff">
2<#if BackgroundColor.getData()?has_content>
3 <#assign bgcolor = BackgroundColor.getData()>
4</#if>
5
6<div class="header header-1 header-1-1 header-1-1-1 <#if getterUtil.getBoolean(RimuoviOmbra.getData())>no-shadow</#if>">
7 <div class="image" style="background-color:${bgcolor}">
8 <#if Image.getData()?? && Image.getData() != "">
9 <img src="${Image.getData()}" alt="">
10 </#if>
11 </div>
12 <div class="header-body">
13 <div class="container">
14 <div class="header-title">${Title.getData()}</div>
15 <div class="row">
16 <div class="col-8">
17 <div class="header-text">${Abstract.getData()}</div>
18 </div>
19 </div>
20 <#if Link.getData()?? && LinkLabel.getData()?? && LinkLabel.getData() != "">
21 <div class="header-action"><a class="btn btn-primary" href="${Link.getData()}">${LinkLabel.getData()}</a></div>
22 </#if>
23 </div>
24 </div>
25</div>