mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
df15cd8920
Moved some style declarations from layout to typography so that the cms would pick them up. Moved typography tag to the page.ss before layout is included Changed typography elements to be wrapped in .typography, rather than a layout tag within the Layout page templates. This will mean that a bunch of modules have access to the correct type styling
50 lines
1.7 KiB
Scheme
50 lines
1.7 KiB
Scheme
<div id="Content" class="searchResults">
|
|
<h1>$Title</h1>
|
|
|
|
<% if Query %>
|
|
<p class="searchQuery"><strong>You searched for "{$Query}"</strong></p>
|
|
<% end_if %>
|
|
|
|
<% if Results %>
|
|
<ul id="SearchResults">
|
|
<% control Results %>
|
|
<li>
|
|
<a class="searchResultHeader" href="$Link">
|
|
<% if MenuTitle %>
|
|
$MenuTitle
|
|
<% else %>
|
|
$Title
|
|
<% end_if %>
|
|
</a>
|
|
<p>$Content.LimitWordCountXML</p>
|
|
<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">
|
|
<div class="pagination">
|
|
<% if Results.NotFirstPage %>
|
|
<a class="prev" href="$Results.PrevLink" title="View the previous page">←</a>
|
|
<% end_if %>
|
|
<span>
|
|
<% control Results.Pages %>
|
|
<% if CurrentBool %>
|
|
$PageNum
|
|
<% else %>
|
|
<a href="$Link" title="View page number $PageNum" class="go-to-page">$PageNum</a>
|
|
<% end_if %>
|
|
<% end_control %>
|
|
</span>
|
|
<% if Results.NotLastPage %>
|
|
<a class="next" href="$Results.NextLink" title="View the next page">→</a>
|
|
<% end_if %>
|
|
</div>
|
|
<p>Page $Results.CurrentPage of $Results.TotalPages</p>
|
|
</div>
|
|
<% end_if %>
|
|
</div> |