Code to render a menu - Developer Example
TODO-UC: explain. links to building a menu. show the rendered output from the getHtml() call.
## uc:menu-used="header"
## uc:theme-attribute-boolean="Checkout Only Theme"
#if($theme.attr("Checkout Only Theme", "false") != "true")
<nav id="main-nav">
## get the menu object with the getMenu("menu name") method on the $menuManager Object.
#set($mainMenuObj = $menuManager.getMenu("header"))
## Then, output your menu
##option 1: getHtml() method
$mainMenuObj.getHtml()
#if ($site.supportCustomerProfiles)
<ul>
<li class="account-link hide-for-large-up">
<a href="${myAccountUrlHttps}&OVERRIDECONTINUESHOPPINGURL=$baseUrl" title="Go to your account">My Account</a>
</li>
</ul>
#end
##option 2: build it manually by looping through the returned values of $mainMenuObj.getMenuItems()
## <ul class="menu-header">
## #foreach($menuItem in $mainMenuObj.getMenuItems())
## <li> <a href="$menuItem.getURL()" title="$menuItem.getDescription()">$menuItem.getDescription()</a>
## #set($subMenuItems = $menuItem.getChildMenuItems())
## #if($subMenuItems.size() > 0)
## <ul>
## #foreach($subMenuItem in $subMenuItems)
## <li>
## <a href="$subMenuItem.getURL()" title="$subMenuItem.getDescription()">$subMenuItem.getDescription()</a>
## </li>
## #end
## </ul>
## #end
## </li>
## #end
## #if ($site.supportCustomerProfiles)
## <li class="account-link hide-for-large-up">
## <a href="${myAccountUrlHttps}&OVERRIDECONTINUESHOPPINGURL=$baseUrl" title="Go to your account">My Account</a>
## </li>
## #end
## </ul>
</nav>
#end
, multiple selections available,