silverstripe-blog/templates/Includes/BlogPagination.ss

21 lines
577 B
Scheme
Raw Normal View History

2007-09-07 00:33:58 +02:00
<% if BlogEntries.MoreThanOnePage %>
<div id="PageNumbers">
<% if BlogEntries.NotLastPage %>
2008-01-14 03:41:27 +01:00
<a class="next" href="$BlogEntries.NextLink" title="View the next page">Next</a>
2007-09-07 00:33:58 +02:00
<% end_if %>
<% if BlogEntries.NotFirstPage %>
2008-01-14 03:41:27 +01:00
<a class="prev" href="$BlogEntries.PrevLink" title="View the previous page">Prev</a>
2007-09-07 00:33:58 +02:00
<% end_if %>
<span>
<% control BlogEntries.Pages %>
<% if CurrentBool %>
$PageNum
<% else %>
<a href="$Link" title="View page number $PageNum">$PageNum</a>
<% end_if %>
<% end_control %>
</span>
</div>
<% end_if %>