This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/scribeengine/templates/pagination.mako
Raoul Snyman c0e74e19bb Added "logged in as" text to identify the current user.
Added pagination to the default post view.
Fixed a bug where the comments were being ordered incorrectly.
2010-01-31 15:45:20 +02:00

12 lines
433 B
Mako

<div class="pagination">
% if c.prev_page:
<a href="${c.first_page}" title="First">&lt;&lt; First</a>
<a href="${c.prev_page}" title="Previous">&lt; Previous</a> |
% endif
${c.list_start} to ${c.list_end} of ${c.list_total}
% if c.next_page:
| <a href="${c.next_page}" title="Next">Next &gt;</a>
<a href="${c.last_page}" title="Last">Last &gt;&gt;</a>
% endif
</div>