cyberstammtisch-silverstripe/themes/monkee21/templates/Includes/SidebarMenu.ss

22 lines
590 B
Scheme
Raw Permalink Normal View History

2023-01-03 22:38:16 +00:00
<%--Include SidebarMenu recursively --%>
<% if LinkOrSection = section %>
<% if $Children %>
<% loop $Children %>
<li class="$LinkingMode nav-item">
<a href="$Link" class="$LinkingMode nav-link<% if $isCurrent || $isSection %> active<% end_if %>" title="Go to the $Title.XML page">
<span class="text">$MenuTitle.XML</span>
</a>
<% if $Children && LinkOrSection = section %>
<div class="secondary">
<ul class="nav flex-column">
<% include SidebarMenu %>
</ul>
</div>
<% end_if %>
</li>
<% end_loop %>
<% end_if %>
<% end_if %>