mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
21 lines
464 B
Scheme
21 lines
464 B
Scheme
<%--Include SidebarMenu recursively --%>
|
|
<% if LinkOrSection = section %>
|
|
<% if $Children %>
|
|
<% loop $Children %>
|
|
<li class="$LinkingMode">
|
|
<a href="$Link" class="$LinkingMode" title="Go to the $Title.XML page">
|
|
<span class="arrow">→</span>
|
|
<span class="text">$MenuTitle.XML</span>
|
|
</a>
|
|
|
|
<% if $Children %>
|
|
<ul>
|
|
<% include SidebarMenu %>
|
|
</ul>
|
|
<% end_if %>
|
|
|
|
</li>
|
|
<% end_loop %>
|
|
<% end_if %>
|
|
<% end_if %>
|