mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
19 lines
572 B
Scheme
19 lines
572 B
Scheme
<% if $Submenu %>
|
|
<nav>
|
|
<ul class="nav flex-column">
|
|
<% with $Page.Level(1) %>
|
|
<li class="nav-item-level1 nav-item {$CSSClass} $ExtraClass <% if $isCurrent || $isSection %> active<% end_if %>">
|
|
<b class="nav-link">
|
|
$MenuTitle.XML
|
|
<% if $isCurrent || $isSection %><i class="sr-only">(current)</i><% end_if %>
|
|
</b>
|
|
</li>
|
|
<% end_with %>
|
|
|
|
<% loop $Submenu %>
|
|
<% include NavItem %>
|
|
<% end_loop %>
|
|
</ul>
|
|
</nav>
|
|
<% end_if %>
|