Zoeken

Webcontent zoeken

Er trad een fout op tijdens de verwerking van de sjabloon.
The following has evaluated to null or missing:
==> cur_uitgelichtTitle.uitgelichtImage.copyrightImageInformation  [in template "20115#20151#336414" at line 22, column 20]

----
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 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 cur_uitgelichtTitle.uitgelichtIma...  [in template "20115#20151#336414" at line 22, column 15]
----
1<div class="homepage__adt border_top bz-highlighted"> 
2  <h2 class="homepage__adt__title"><@liferay.language key="highlighted" /></h2> 
3  <#if uitgelichtTitle.getSiblings()?has_content> 
4    <#list uitgelichtTitle.getSiblings() as cur_uitgelichtTitle> 
5      <#if cur_uitgelichtTitle?index % 3 = 0> 
6        <div class="row"> 
7      </#if> 
8      <div class="col-md-4 col-sm-6 col-xs-12 homepage__adt__asset"> 
9        <div class="content-container"> 
10          <h3 class="homepage__adt__asset-title"> 
11            <a href="${htmlUtil.escapeHREF(cur_uitgelichtTitle.uitgelichtLink.getFriendlyUrl())}">${htmlUtil.escape(cur_uitgelichtTitle.getData())}</a> 
12          </h3> 
13          <p>${htmlUtil.escape(cur_uitgelichtTitle.uitgelichtDescription.getData())}</p> 
14        </div> 
15        <#if cur_uitgelichtTitle.uitgelichtImage.getData()?? && cur_uitgelichtTitle.uitgelichtImage.getData() != ""> 
16          <div class="image-container"> 
17            <figure class="image-copyright"> 
18              <img class="homepage__adt__asset-image" 
19                data-fileentryid="${htmlUtil.escape(cur_uitgelichtTitle.uitgelichtImage.getAttribute("fileEntryId"))}" 
20                alt="${htmlUtil.escape(cur_uitgelichtTitle.uitgelichtImage.getAttribute("alt"))}" 
21                src="${htmlUtil.escape(cur_uitgelichtTitle.uitgelichtImage.getData())}" /> 
22              <#if cur_uitgelichtTitle.uitgelichtImage.copyrightImageInformation.getData()?has_content> 
23                <small class="copyright"> 
24                  <span>©</span> 
25                  ${cur_uitgelichtTitle.uitgelichtImage.copyrightImageInformation.getData()} 
26                </small> 
27              </#if> 
28            </figure> 
29          </div> 
30        </#if> 
31      </div> 
32      <#if cur_uitgelichtTitle?index % 3 = 2 || cur_uitgelichtTitle?is_last> 
33        </div> 
34      </#if> 
35    </#list> 
36  </#if> 
37</div>