Hilfe
Fragen & Antworten
An error occurred while processing the template.
The following has evaluated to null or missing:
==> cur_Kategorie.LinkBeschriftung.Link.dynLink  [in template "38965#38990#06_LINK-LIST" at line 7, column 43]

----
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 getterUtil.getBoolean("${cur_Kate...  [in template "38965#38990#06_LINK-LIST" at line 7, column 13]
----
1<#if Kategorie.getSiblings()?has_content >
 
2    <div class="sidebarswitch">
 
3        <#list Kategorie.getSiblings() as cur_Kategorie >
 
4        <#assign dynCssClass = '' >
 
5            <h2>${cur_Kategorie.getData()}</h2>
 
6        <#if cur_Kategorie.LinkBeschriftung?has_content && cur_Kategorie.LinkBeschriftung.getSiblings()?has_content >
 
7            <#if getterUtil.getBoolean("${cur_Kategorie.LinkBeschriftung.Link.dynLink.getData()}") >
 
8                <#assign dynCssClass = 'tarifrechner-button' >
 
9            <#else>
 
10                <#assign dynCssClass = '' >
 
11            </#if>
 
12        <ul class="linklist">
 
13        <#if cur_Kategorie.LinkBeschriftung.getSiblings()?has_content>
 
14            <#list cur_Kategorie.LinkBeschriftung.getSiblings() as cur_Link >
 
15                <li>
 
16                <#if cur_Link.Link?? && !cur_Link.Link.getData()?has_content >
 
17                <a href="${cur_Link.interner_Link.getFriendlyUrl()}" target="${cur_Link.LinkZiel.getData()}"
 
18                   class="${dynCssClass}">
 
19                <#else>
 
20                    <a href="${cur_Link.Link.getData()}" target="${cur_Link.LinkZiel.getData()}" class="${dynCssClass}">
 
21                </#if>
 
22                    ${cur_Link.getData()}
 
23                </a>
 
24                </li>
 
25            </#list>
 
26        </#if>
 
27        </ul>
 
28        </#if>
 
29        </#list>
 
30    </div>
 
31</#if>