An error occurred while processing the template.
The following has evaluated to null or missing: ==> note [in template "20101#20128#127279" at line 75, 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 75, 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 <!--<img style="padding: 5px;max-height: 300px;border: 1px solid #ded7d7;" align="left" src="${Immagineaap0.getData()}" class="mr-3 mt-1 "/>-->
17
18 <#if categories?size!=0>
19 <div class="marginBottom20">
20 <h6 class="tipologia">${categories?first}</h6>
21 </div>
22 </#if>
23 <div class="marginBottom20"><b>Linea Editoriale num:</b> ${LineaEditorialeNum.getData()}</div>
24 <div class="marginBottom20">
25 <h3>${Titolo.getData()}</h3>
26 </div>
27
28
29
30 <div class="marginBottom20">
31 <#if Temi.getData() != ''>
32 <section><article><b>Temi:</b>
33 ${Temi.getData()}
34 </article></section>
35 </div>
36 </#if>
37
38
39 <#if Sottotitolo??><div class="marginBottom20">
40 ${Sottotitolo.getData()}
41 </div></#if>
42
43
44
45 <#if AnnoPubblicazione.getData() != ''><div class="marginBottom20"><b>Anno pubblicazione:</b> ${AnnoPubblicazione.getData()}</div></#if>
46
47
48 <#if Autore.getData() != ''><div class="marginBottom20"><b>Autore:</b> ${Autore.getData()}</div></#if>
49
50
51 <#if CasaEditrice.getData() != ''><div class="marginBottom20"><b>Casa Editrice:</b> ${CasaEditrice.getData()}</div>
52 </#if>
53
54
55 <#if Formato.getData() != ''><div class="marginBottom20"><b>Formato:</b> ${Formato.getData()}</div></#if>
56
57
58 <#if ISBN.getData() != ''><div class="marginBottom20"><b>ISBN:</b> ${ISBN.getData()}</div></#if>
59
60
61 <#if Pagine.getData() != ''><div class="marginBottom20"><b>Pagine:</b> ${Pagine.getData()}</div></#if>
62
63
64 <#if Tipografia.getData() != ''><div class="marginBottom20"><b>Tipografia:</b> ${Tipografia.getData()}</div></#if>
65
66
67 <#if Descrizione.getData() != ''><div class="marginBottom20">
68 <section><article><b>Descrizione:</b>
69 ${Descrizione.getData()}</n>
70
71 <#if link1.getData() != ''><b>${link1.getData()}</b></#if>
72
73 </article></section>
74 </div></#if>
75 <#if note.getData() != ''>
76 <div class="marginBottom20">
77
78 <section><article><b>Note:</b>
79
80 ${note.getData()}<#if note.getData() != ''>
81 ${note.getData()}</div>
82</#if>
83 </article></section>
84 </div>
85 </#if>
86
87 <#if DataInserimento.getData() != ''>
88 <div class="marginBottom20"><b>Data inserimento:</b> ${DataInserimento.getData()?date("yyyy-MM-dd")?string("dd/MM/yyyy")}
89 </div>
90
91 </#if>
92</div>
93
94<@showAllegati/>