Dove siamo
Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing: ==> category [in template "37204#37246#524767" at line 10, column 66] ---- Tip: If the failing expression is known to 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: ${categoryURL.setParameter("categoryI... [in template "37204#37246#524767" at line 10, column 25] ----
1<div class="navigazione-categorie_wrap menu-scroll">
2 <div class="vivisol-container">
3 <#if entries?has_content>
4 <div class="navigation-menu">
5 <div class="navigazione-categorie menu-scroll_wrap flexed align-center" role="menubar">
6 <#list entries as curVocabulary>
7 <#list webContentUtil.reoderNationCategories(curVocabulary.vocabularyId , curVocabulary.getCategories()) as category>
8 <#assign active = '' />
9 <#assign categoryURL = renderResponse.createRenderURL() />
10 ${categoryURL.setParameter("categoryId", category.getCategoryId()?string)}
11 <#if currentURL?contains("p_r_p_categoryId="+category.getCategoryId()) || currentURL?contains("/"+category.getCategoryId())>
12 <#assign active = 'active' />
13 </#if>
14 <div class="navigation-item navigazione-categorie--item ${active}">
15 <a href="${categoryURL}">${category.getTitle(locale)}</a>
16 </div>
17
18 </#list>
19 </#list>
20 </div>
21 <span class="arrow arrow-left disabled">
22 <i class="icom-ico-arrow-left"></i>
23 </span>
24 <span class="arrow arrow-right">
25 <i class="icom-ico-arrow-right"></i>
26 </span>
27 </div>
28 </#if>
29 </div>
30</div>