The following has evaluated to null or missing: ==> entry.getURL() [in template "10154#10192#1350977981" at line 5, column 24] ---- 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: ${entry.getURL()} [in template "10154#10192#1350977981" at line 5, column 22] ----
1<ul class="breadcrumb breadcrumb-horizontal">
2 <#list entries as entry>
3 <li>
4 <#if entry?has_next>
5 <a href="${entry.getURL()}">${entry.getTitle()}</a>
6 <span class="divider">/</span>
7 <#else>
8 ${entry.getTitle()}
9 </#if>
10 </li>
11 </#list>
12</ul>