Home - Chimici Fisici
Benvenuto nel portale dedicato ai Chimici Fisici
A breve sarà disponibile un nuovo prodotto pensato per rispondere alle tue specifiche esigenze.
Nel frattempo, rimani aggiornato con le notizie Aon sul nostro blog.
Nel frattempo, rimani aggiornato con le notizie Aon sul nostro blog.
Nuovo Cliente
Vuoi calcolare un preventivo?
Compila il form e ottieni una quotazione ottima per te.
Vuoi acquistare una polizza?
Accedi al tuo account e scegli il metodo di pagamento che preferisci.
Già Cliente
Vuoi calcolare un preventivo?
Compila il form e ottieni una quotazione ottima per te.
Vuoi acquistare una polizza?
Accedi al tuo account e scegli il metodo di pagamento che preferisci.
Rc Professionale Chimici - Fisici
Viaggi
Polizze vita privata
Ultime notizie
News e approfondimenti sugli garanzie e polizze assicurative. Resta aggiornato con Aon.
An error occurred while processing the template.
The following has evaluated to null or missing:
==> xPathSelector.selectSingleNode(rootElement) [in template "20157#20197#4138887" at line 17, column 81]
----
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: #assign news = xPathSelector.selectSi... [in template "20157#20197#4138887" at line 17, column 65]
----
1<!-- News Swiper -->
2<#if entries?has_content>
3 <section class="container mb-12x mb-md-27x">
4 <div class="row">
5 <div class="col-xs-12 offset-xs-0 col-lg-10 offset-lg-1">
6 <div id="newsSlider" class="AF-HomeNewsSlider_container swiper-container swiper-container-initialized swiper-container-horizontal">
7 <div class="swiper-wrapper">
8 <#list entries as curEntry>
9 <#assign renderer = curEntry.getAssetRenderer() />
10 <#assign className = renderer.getClassName() />
11 <#if className == "com.liferay.journal.model.JournalArticle">
12 <#assign journalArticle = renderer.getArticle() />
13 <#assign date = journalArticle.getModifiedDate()?string('dd MMM yyyy') />
14 <#assign document = saxReaderUtil.read(journalArticle.getContent()) />
15 <#assign rootElement = document.getRootElement() />
16 <#assign xPathSelector = saxReaderUtil.createXPath("dynamic-element[@name='News']/dynamic-content[@language-id = '${locale}']") />
17 <#assign news = xPathSelector.selectSingleNode(rootElement).getStringValue() />
18 <#assign xPathSelector = saxReaderUtil.createXPath("dynamic-element[@name='Image']/dynamic-content[@language-id = '${locale}']") />
19 <#assign image = xPathSelector.selectSingleNode(rootElement).getStringValue() />
20 <#assign viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry) />
21 <#assign viewURL = curEntry.getAssetRenderer().getURLViewInContext(renderRequest, renderResponse, viewURL) />
22 </#if>
23 <div class="AF-HomeNewsSlider_slide swiper-slide swiper-slide-active">
24 <a href="${viewURL}" class="AF-Card AF-CardSmall">
25 <div class="AF-CardSmall_image">
26 <#assign backgroundMapJson = image?eval />
27 <#assign backgroundGroupId = backgroundMapJson.groupId?number />
28 <#assign backgroundUUID = backgroundMapJson.uuid />
29 <#assign portletFileRepositoryUtil = serviceLocator.findService("com.liferay.portal.kernel.portletfilerepository.PortletFileRepositoryUtil") />
30 <#attempt>
31 <#assign backgroundFileEntry = portletFileRepositoryUtil.getPortletFileEntry(backgroundUUID, backgroundGroupId) />
32 <#assign backgroundFileEntryURL = portletFileRepositoryUtil.getDownloadPortletFileEntryURL(themeDisplay, backgroundFileEntry, "") />
33 <img class="fit-cover" src="${backgroundFileEntryURL}" alt="img-news" />
34 <#recover>
35 </#attempt>
36 </div>
37 <div>
38 <label class="AF-CardSmall_label">${date}</label>
39 <p class="AF-CardSmall_paragraph AF-Card_troncate">${news}</p>
40 </div>
41 </a>
42 </div>
43 </#list>
44 </div>
45 <div class="AF-HomeNewsSlider_pagination swiper-pagination swiper-pagination-clickable swiper-pagination-bullets"></div>
46 <span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span>
47 </div>
48 </div>
49 </div>
50 </section>
51</#if>