mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
43b6d42719
This major update changes the behaviour of the docviewer module to use a cached manifest rather than on demand. This allows us to simplify the URL matching and store 'nice' URL configuration rather than altering handleAction().
21 lines
510 B
Scheme
21 lines
510 B
Scheme
<div id="sidebar" class="box">
|
|
<ul class="nav">
|
|
<% loop Entities %>
|
|
<% if DefaultEntity %>
|
|
|
|
<% else %>
|
|
<li><a href="$Link" class="$LinkingMode top">$Title <% if IsFolder %><span class="is-folder">►</span><% end_if %></a>
|
|
<% if LinkingMode == current %>
|
|
<% if Children %>
|
|
<ul>
|
|
<% loop Children %>
|
|
<li><a href="$Link" class="$LinkingMode">$Title</a></li>
|
|
<% end_loop %>
|
|
</ul><% end_if %>
|
|
<% end_if %>
|
|
</li>
|
|
<% end_if %>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|