mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
18 lines
403 B
Scheme
18 lines
403 B
Scheme
|
<!--Include SidebarMenu recursively /-->
|
||
|
<% 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 %>
|