mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 15:05:33 +00:00
0d683854da
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.3@71148 467b73ca-7a2a-4603-9d3b-597d59a354a9
42 lines
1.4 KiB
Scheme
42 lines
1.4 KiB
Scheme
<div class="typography">
|
|
<% if Results %>
|
|
<ul id="SearchResults">
|
|
<% control Results %>
|
|
<li>
|
|
<% if MenuTitle %>
|
|
<h3><a class="searchResultHeader" href="$Link">$MenuTitle</a></h3>
|
|
<% else %>
|
|
<h3><a class="searchResultHeader" href="$Link">$Title</a></h3>
|
|
<% end_if %>
|
|
<% if Content %>
|
|
$Content.FirstParagraph(html)
|
|
<% end_if %>
|
|
<a class="readMoreLink" href="$Link" title="Read more about "{$Title}"">Read more about "{$Title}"...</a>
|
|
</li>
|
|
<% end_control %>
|
|
</ul>
|
|
<% else %>
|
|
<p>Sorry, your search query did not return any results.</p>
|
|
<% end_if %>
|
|
|
|
<% if Results.MoreThanOnePage %>
|
|
<div id="PageNumbers">
|
|
<% if Results.NotLastPage %>
|
|
<a class="next" href="$Results.NextLink" title="View the next page">Next</a>
|
|
<% end_if %>
|
|
<% if Results.NotFirstPage %>
|
|
<a class="prev" href="$Results.PrevLink" title="View the previous page">Prev</a>
|
|
<% end_if %>
|
|
<span>
|
|
<% control Results.SummaryPagination(5) %>
|
|
<% if CurrentBool %>
|
|
$PageNum
|
|
<% else %>
|
|
<a href="$Link" title="View page number $PageNum">$PageNum</a>
|
|
<% end_if %>
|
|
<% end_control %>
|
|
</span>
|
|
|
|
</div>
|
|
<% end_if %>
|
|
</div> |