mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
275f5ba33d
Minor clean-up of consistency for tablet main menu styles Added multilevel subnavigation in sidebar for internal pages Updated search styling and positioning Changed header color and link color to provide more consistency for the theme Footer links to red on hover and site name to link to homepage Search results page styling updated
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 %> |