mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
e38b740d88
* Create sidebar hamburger menu for mobile * Improve sidebar UX and mobile menu * Fixed sidebar UX bug where blue text breadcrumb didn't appear and fixed hover/focus styling * Improved UX of hamburger by applying toggle animations
11 lines
263 B
Scheme
Executable File
11 lines
263 B
Scheme
Executable File
<div class="doc-breadcrumbs">
|
|
<p>
|
|
<% loop Breadcrumbs %>
|
|
<% if not First %>
|
|
<a class="breadcrumb <% if Last %>current<% end_if %>" href="$Link">$Title</a> <% if Last %><% else %><span>/</span><% end_if %>
|
|
<% end_if %>
|
|
<% end_loop %>
|
|
|
|
</p>
|
|
</div>
|