Si รจ verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing: ==> ImmagineDiDettaglio [in template "170938#170973#172663" at line 7, column 18] ---- 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 ImmagineDiDettaglio.getData()?? &... [in template "170938#170973#172663" at line 7, column 13] ----
1<#-- Adaptive media -->
2<#include "${templatesPath}/228327">
3
4<div class="container">
5 <div class="row">
6 <div class="col-12 col-md-6">
7 <#if ImmagineDiDettaglio.getData()?? && ImmagineDiDettaglio.getData()?has_content>
8 <img src="${ImmagineDiDettaglio.getData()}" class="w-100" />
9 </#if>
10 </div>
11 <div class="col-12 col-md-6">
12 <h1 class="mb-4">${.vars['reserved-article-title'].data}</h1>
13 <p>${descrizione.getData()}</p>
14
15 <#if Allegati.getSiblings()?has_content>
16 <h3>Allegati</h3>
17 <ul>
18 <#list Allegati.getSiblings() as cur_Allegati>
19 <li><a href="${cur_Allegati.getData()}"> ${cur_Allegati.TitoloAllegato.getData()} </a> </li>
20 </#list>
21 </ul>
22 </#if>
23 </div>
24 </div>
25</div>