An error occurred while processing the template.
Java method "com.liferay.site.navigation.taglib.internal.util.SiteNavigationMenuNavItem.isChildSelected()" threw an exception when invoked on com.liferay.site.navigation.taglib.internal.util.SiteNavigationMenuNavItem object "com.liferay.site.navigation.taglib.internal.util.SiteNavigationMenuNavItem@9f79"; see cause exception in the Java stack trace.

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if navItem.isChildSelected() || navI...  [in template "NAVIGATION-MACRO-FTL" in macro "buildNavigation" at line 60, column 33]
	- Reached through: @buildNavigation branchNavItems=branc...  [in template "20098#20124#39622" at line 20, column 9]
----
1<#include "${templatesPath}/NAVIGATION-MACRO-FTL" /> 
2 
3<#if !entries?has_content> 
4     
5    <#if preview> 
6        <div class="alert alert-info"> 
7            <@liferay.language key="there-are-no-pages-to-display-for-the-current-page-level" /> 
8        </div> 
9    </#if> 
10<#else> 
11    <#assign includeAllChildNavItems = false /> 
12 
13    <#if stringUtil.equals(includedLayouts, "all")> 
14        <#assign includeAllChildNavItems = true /> 
15    </#if> 
16    <#-- 
17    <h2 class="title_submenu" role="alert"><strong>${"${themeDisplay.getLayout().getName()}"}</strong></h2> --> 
18    <div class="shadow-sm p-3 bg-white rounded-sm"> 
19    <div aria-label="menú contextual" role="complementary" class="list-menu submenu-icetex"> 
20        <@buildNavigation 
21            branchNavItems=branchNavItems 
22            cssClass="layouts" 
23            displayDepth=displayDepth 
24            includeAllChildNavItems=includeAllChildNavItems 
25            navItemLevel=1 
26            navItems=entries 
27        /> 
28    </div> 
29    </div> 
30</#if>