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

35 lines
1.1 KiB
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.
**app/templates/Page.ss**
2014-10-13 09:49:30 +02:00
2017-08-07 05:11:17 +02:00
```ss
<ul>
<% loop $Menu(1) %>
<li>
<a href="$Link" title="Go to the $Title page" class="<% if $isCurrent %>current<% else_if $isSection %>section<% end_if %>">
$MenuTitle
</a>
2014-10-13 09:49:30 +02:00
<% if $isSection %>
<% if $Children %>
<ul class="secondary">
<% loop $Children %>
<li class="<% if $isCurrent %>current<% else_if $isSection %>section<% end_if %>"><a href="$Link">$MenuTitle</a></li>
<% end_loop %>
</ul>
<% end_if %>
<% end_if %>
</li>
<% end_loop %>
</ul>
```w
2014-10-13 09:49:30 +02:00
## Related
* [Template Syntax](../syntax)
2015-09-30 03:19:20 +02:00
* [Common Variables](../common_variables)