An error occurred while processing the template.
Java method "com.sun.proxy.$Proxy1741.getArticle(long, String)" threw an exception when invoked on com.sun.proxy.$Proxy1741 object "com.liferay.journal.service.impl.JournalArticleLocalServiceImpl@438f009f"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign personaJournalArticle = journ... [in template "BOX-CONTATTI" at line 11, column 9] - Reached through: #include "${templatesPath}/BOX-CONTATTI" [in template "A-CHI-RIVOLGERSI" at line 17, column 21] - Reached through: #include "${templatesPath}/A-CHI-RIVO... [in template "20097#20123#DETTAGLIO-COMUNICATO-STAMPA" at line 82, column 1] ----
1<#include "${templatesPath}/MACRO-DETAIL-PAGE" />
2
3<div class="webcontent-detail">
4 <div class="container">
5 <div class="row">
6 <nav class="col-md-4">
7 <div class="webcontent-detail__nav">
8 <ul>
9 <#list titolo_paragrafo.getSiblings() as cur_titolo>
10 <#if cur_titolo.getData() != "">
11 <li><a href="#section-${cur_titolo?counter}">${cur_titolo.getData()}</a></li>
12 </#if>
13 </#list>
14 <#if documenti_allegati.getSiblings()[0].getData() != "">
15 <li><a href="#section-allegati">${languageUtil.get(locale, "aire.section.documents")}</a></li>
16 </#if>
17 </ul>
18 <#if tags?has_content>
19 <div class="webcontent-detail__box">
20 <div class="webcontent-detail__box-title">${languageUtil.get(locale, "aire.section.tag")}</div>
21 <div>
22 <#list tags as tag>
23 <a href="/ricerca?tag=${tag.getTagId()}" title="${tag.getName()}" class="webcontent-detail__tag">#${tag.getName()}</a>
24 </#list>
25 </div>
26 </div>
27 </#if>
28 </div>
29 </nav>
30 <div class="col-md-8">
31 <div class="webcontent-detail__main">
32 <div class="d-flex justify-content-between">
33 <#if categorieTema?has_content>
34 <div class="webcontent-detail__category">
35 <#list categorieTema as categoria>
36 <span>${categoria.getName()}</span>
37 </#list>
38 </div>
39 </#if>
40 <div class="bookmark position-relative">
41 <@bookmarkCheck className=className classPK=classPK structureId=structureId />
42 </div>
43 </div>
44 <#if data?has_content>
45 <div class="webcontent-detail__date">${data.getData()?date("yyyy-MM-dd")?string("dd/MM/yyyy")}</div>
46 </#if>
47 <#if immagine?has_content>
48 <img src="${immagine.getData()}" alt="${titolo.getData()}" class="webcontent-detail__img" />
49 </#if>
50 <#list titolo_paragrafo.getSiblings() as cur_titolo>
51 <section id="section-${cur_titolo?counter}" class="webcontent-detail__section">
52 <h2 class="webcontent-detail__section-title">${cur_titolo.getData()}</h2>
53 ${cur_titolo.descrizione_paragrafo.getData()}
54 </section>
55 </#list>
56 <#if documenti_allegati.getSiblings()[0].getData() != "">
57 <section id="section-allegati" class="webcontent-detail__section">
58 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.section.documents")}</h2>
59 <#list documenti_allegati.getSiblings() as allegato>
60 <#if allegato.getData() != "">
61 <@mostraAllegato allegato />
62 <#if allegato.titolo_doc.getData() != "">
63 <#assign titoloAllegato = allegato.titolo_doc.getData()>
64 <#else>
65 <#assign titoloAllegato = allegatoTitle>
66 </#if>
67 <a href="${fileEntryDownloadURL}" title="${titoloAllegato}" class="webcontent-detail__attachment d-flex align-items-end w-100">
68 <svg class="ico-svg">
69 <use xlink:href="${themeIconsPath}#arrow-to-bottom-light"></use>
70 </svg>
71 <span>${titoloAllegato}</span>
72 </a>
73 </#if>
74 </#list>
75 </section>
76 </#if>
77 </div>
78 </div>
79 </div>
80 </div>
81</div>
82<#include "${templatesPath}/A-CHI-RIVOLGERSI" />