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.
30 lines
516 B
Scheme
Executable File
30 lines
516 B
Scheme
Executable File
<div class="box">
|
|
<% if Introduction %>
|
|
<div class="introduction">
|
|
<h1>$Title</h1>
|
|
|
|
<% if Introduction %>
|
|
<p>$Introduction</p>
|
|
<% end_if %>
|
|
</div>
|
|
<% else %>
|
|
<h2>$Title</h2>
|
|
<% end_if %>
|
|
|
|
<% include DocumentationVersions %>
|
|
|
|
<% if VersionWarning %>
|
|
<% include DocumentationVersion_warning %>
|
|
<% end_if %>
|
|
|
|
|
|
<% include DocumentationTableContents %>
|
|
|
|
<% loop Children %>
|
|
<ul>
|
|
<li><a href="$Link">$Title</a></li>
|
|
</ul>
|
|
<% end_loop %>
|
|
|
|
<% include DocumentationNextPrevious %>
|
|
</div> |