mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
52733d6ebf
This allows you to build up dynamic listing pages much better.
12 lines
231 B
Scheme
12 lines
231 B
Scheme
<% if Children %>
|
|
<div class="documentation_children">
|
|
<ul>
|
|
<% loop Children %>
|
|
<li>
|
|
<h3><a href="$Link">$Title</a></h3>
|
|
<% if Summary %><p>$Summary</p><% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|
|
<% end_if %> |