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.
Add the following code to your main template,
most likely the "Page" template in your theme,
located in themes/<mytheme>/templates/Page.ss.
:::ss
<ul>
<% loop $Menu(1) %>
<li>
<a href="$Link" title="Go to the $Title page" class="$LinkingMode">
<span>$MenuTitle</span>
</a>
</li>
<% end_loop %>
</ul>
More details on creating a menu are explained as part of "Tutorial 1: Building a basic site", as well as "Page type templates" topic.

Comments
Comment policy: Please use comments for tips and corrections about the described functionality.
blog comments powered by DisqusComments are moderated, we reserve the right to remove comments that are inappropriate or are no longer relevant. Use the Silverstripe Forum to ask questions.