silverstripe-framework/docs/en/02_Developer_Guides/01_Templates/How_Tos/01_Navigation_Menu.md

34 lines
839 B
Markdown
Raw Normal View History

2014-10-13 09:49:30 +02:00
title: How to Create a Navigation Menu
# How to Create a Navigation Menu
In this how-to, we'll create a simple menu which you can use as the primary navigation for your website. This outputs a
top level menu with a nested second level using the `Menu` loop and a `Children` loop.
**mysite/templates/Page.ss**
:::ss
<ul>
<% loop $Menu(1) %>
<li>
<a href="$Link" title="Go to the $Title page" class="$LinkingMode">
$MenuTitle
</a>
<% if $LinkOrSection == section %>
<% if $Children %>
<li><ul class="secondary">
<% loop $Children %>
<li class="$LinkingMode"><a href="$Link">$MenuTitle</a></li>
<% end_loop %>
</ul></li>
<% end_if %>
<% end_if %>
</li>
<% end_loop %>
</ul>
## Related
* [Template Syntax](../syntax)
* [Common Variables](../common_variables)