The following has evaluated to null or missing: ==> htmlUtil.escape(entry.getTitle()) [in template "20155#20187#238788" at line 6, column 105] ---- 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: ${htmlUtil.escape(entry.getTitle())} [in template "20155#20187#238788" at line 6, column 103] ----
1<#if entries?has_content>
2 <ol class="breadcrumb">
3 <#list entries as entry>
4 <li class="breadcrumb-item">
5 <#if entry?has_next>
6 <a class="breadcrumb-link" href="${entry.getURL()!""}" title="${htmlUtil.escape(entry.getTitle())}">
7 <span class="breadcrumb-text-truncate">${htmlUtil.escape(entry.getTitle())}</span>
8 </a>
9 <#else>
10 <span class="active breadcrumb-text-truncate">${htmlUtil.escape(entry.getTitle())}</span>
11 </#if>
12 </li>
13 </#list>
14 </ol>
15</#if>