null
Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing: ==> htmlUtil.escape(entry.getTitle()) [in template "10112#156075#5105399" at line 21, column 35] ---- 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 "10112#156075#5105399" at line 21, column 33] ----
1<#if entries?has_content>
2 <ul class="breadcrumb breadcrumb-horizontal">
3 <#assign cssClass = "" />
4
5 <#list entries as entry>
6 <#if entry?is_last>
7 <#assign cssClass = "active" />
8 </#if>
9
10 <li class="${cssClass}" <#if entry?is_last>aria-current="page"</#if>>
11 <#if entry?has_next>
12 <a
13
14 <#if entry.isBrowsable()>
15 href="${entry.getURL()!""}"
16 </#if>
17
18 >
19 </#if>
20
21 ${htmlUtil.escape(entry.getTitle())}
22
23 <#if entry?has_next>
24 </a>
25 </#if>
26 </li>
27 </#list>
28 </ul>
29</#if>