Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing: ==> note [in template "20101#20128#127279" at line 58, column 30] ---- 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 note.getData() != "" [in template "20101#20128#127279" at line 58, column 25] ----
1<#include "${templatesPath}/90692"/>
2<#assign categories=getCategoriesOfArticle()/>
3<div>
4
5
6 <div class="marginBottom20">
7 <a class="fancybox" href="#dialogImg" title="${htmlUtil.escapeAttribute(.vars['reserved-article-title'].getData())}">
8 <img src="${Immagineaap0.getData()}" alt="imgDettaglio" class="img-responsive contentImage"/>
9 </a>
10 <div id="dialogImg" style="width:400px; display:none">
11 <img src="${Immagineaap0.getData()}" class="img-responsive"/>
12 </div>
13
14 </div>
15
16
17
18 <!--<img style="padding: 5px;max-height: 300px;border: 1px solid #ded7d7;" align="left" src="${Immagineaap0.getData()}" class="mr-3 mt-1 "/>-->
19
20 <#if categories?size!=0>
21 <div class="marginBottom20">
22 <h6 class="tipologia">${categories?first}</h6>
23 </div>
24 </#if>
25 <div class="marginBottom20"><b>Linea Editoriale num:</b> ${LineaEditorialeNum.getData()}</div>
26 <div class="marginBottom20">
27 <h3>${Titolo.getData()}</h3>
28 </div>
29
30
31 <#if Temi.getData() != ''>
32 <div class="marginBottom20">
33
34 <section><article><b>Temi:</b>
35 ${Temi.getData()}
36 </article></section>
37 </div>
38 </#if>
39
40
41 <#if Sottotitolo?? > <div class="marginBottom20">
42 ${Sottotitolo.getData()}
43 </div>
44 </#if>
45 <div class="marginBottom20"><b>Anno pubblicazione:</b> ${AnnoPubblicazione.getData()}</div>
46 <div class="marginBottom20"><b>Autore:</b> ${Autore.getData()}</div>
47 <div class="marginBottom20"><b>Casa Editrice:</b> ${CasaEditrice.getData()}</div>
48 <div class="marginBottom20"><b>Formato:</b> ${Formato.getData()}</div>
49
50 <div class="marginBottom20"><b>ISBN:</b> ${ISBN.getData()}</div>
51 <div class="marginBottom20"><b>Pagine:</b> ${Pagine.getData()}</div>
52 <div class="marginBottom20"><b>Tipografia:</b> ${Tipografia.getData()}</div>
53 <div class="marginBottom20">
54 <section><article><b>Descrizione:</b>
55 ${Descrizione.getData()}
56 </article></section>
57 </div>
58 <#if note.getData() != ''>
59 <div class="marginBottom20">
60
61 <section><article><b>Note:</b>
62 ${note.getData()}
63 </article></section>
64 </div>
65 </#if>
66 <#if DataInserimento.getData() != ''>
67 <div class="marginBottom20"><b>Data inserimento:</b> ${DataInserimento.getData()?date("yyyy-MM-dd")?string("dd/MM/yyyy")}
68 </div>
69
70 </#if>
71</div>
72<@showAllegati/>