mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
26 lines
745 B
Scheme
26 lines
745 B
Scheme
<%-- NOTE: Before including this, you will need to wrap the include in a with block --%>
|
|
|
|
<% if $MoreThanOnePage %>
|
|
<p class="pagination">
|
|
<% if $NotFirstPage %>
|
|
<a class="prev" href="{$PrevLink}">←</a>
|
|
<% end_if %>
|
|
|
|
<% loop $Pages %>
|
|
<% if $CurrentBool %>
|
|
<span>$PageNum</span>
|
|
<% else %>
|
|
<% if $Link %>
|
|
<a href="$Link">$PageNum</a>
|
|
<% else %>
|
|
<span>...</span>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
<% end_loop %>
|
|
|
|
<% if $NotLastPage %>
|
|
<a class="next" href="{$NextLink}">→</a>
|
|
<% end_if %>
|
|
</p>
|
|
<% end_if %>
|