If a folder has no children, default to menu

This happens in the event of the documentation home page.
This commit is contained in:
Will Rossiter 2014-09-27 10:14:45 +12:00
parent 4c53cf5646
commit 804c67dcaf

View File

@ -38,6 +38,17 @@
<% end_loop %>
</ul>
</div>
<% else %>
<div class="documentation_children">
<ul>
<% loop Menu %>
<li>
<h3><a href="$Link">$Title</a></h3>
<% if Summary %><p>$Summary</p><% end_if %>
</li>
<% end_loop %>
</ul>
</div>
<% end_if %>
<% include DocumentationNextPrevious %>