Contact
Une erreur s'est produite en traitant le modèle.
The following has evaluated to null or missing: ==> cur_webContent.classPK [in template "10154#10192#107779114" at line 22, column 55] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- 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 cur_webContent_classPK = cur_... [in template "10154#10192#107779114" at line 22, column 21] ----
1<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService") />
2
3<#assign anchorId = "">
4
5<#if Anchor_idname?has_content >
6 <#assign anchorId = Anchor_idname.getData()>
7</#if>
8
9<section class="${sectionclass.getData()}" id="${anchorId}">
10 <div class="${Selecteren6055.getData()}">
11
12 <#if sectionrow.getSiblings()?has_content>
13 <#list sectionrow.getSiblings() as row >
14 <div class="row">
15
16 <#if row.column.getSiblings()?has_content>
17 <#list row.column.getSiblings() as thecolumn >
18 <div class="${thecolumn.bootstrapspan.getData()}">
19 <#if thecolumn.htmlOrArticle.SelectTheArticleForThisColumn.data?has_content>
20
21 <#assign cur_webContent = thecolumn.htmlOrArticle.SelectTheArticleForThisColumn.data?eval />
22 <#assign cur_webContent_classPK = cur_webContent.classPK />
23 <#assign article = journalArticleLocalService.getLatestArticle(cur_webContent_classPK?number) />
24 ${journalArticleLocalService.getArticleContent(article, article.getDDMTemplateKey(), "VIEW", themeDisplay.getLanguageId(), themeDisplay)}
25 <#else>
26 ${thecolumn.htmlOrArticle.htmlContentForThisColumn.getData()}
27 </#if>
28 </div>
29 </#list>
30 </#if>
31
32 </div>
33 </#list>
34 </#if>
35
36 </div>
37</section>