Menu Display

An error occurred while processing the template.
When calling function "replaceLinksLanguages", required parameter "url" (parameter #1) was specified, but had null/missing value.

----
Tip: If the parameter value expression on the caller side is known to be legally null/missing, you may want to specify a default value for it with the "!" operator, like paramValue!defaultValue.
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #function replaceLinksLanguages(url, ...  [in template "GVA-MACROS-NAVEGACION" in function "replaceLinksLanguages" at line 317, column 1]
	- Reached through: @buildMenuNavigation branchNavItems=b...  [in template "10155#10193#356963533" at line 18, column 9]
----
1<#-- Se incluye el ADT "GVA Macros comunes de navegación" --> 
2<#include "${templatesPath}/GVA-MACROS-NAVEGACION" /> 
3 
4<#if !entries?has_content> 
5	<#if themeDisplay.isSignedIn()> 
6		<div class="alert alert-info"> 
7			<@liferay.language key="there-are-no-menu-items-to-display" /> 
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	<div aria-label="<@liferay.language key="site-pages" />" class="list-menu"> 
18	<@buildMenuNavigation 
19		branchNavItems=branchNavItems 
20		cssClass="layouts" 
21		displayDepth=displayDepth 
22		includeAllChildNavItems=includeAllChildNavItems 
23		navItemLevel=1 
24		navItems=entries 
25	/> 
26	</div> 
27</#if>