Files
gollum/lib/gollum/templates/pagination.mustache
T
Dawa Ometto 976f55e1b2 Pagination for history and latest changes. (#1396)
* Pagination for history and latest changes

* New footer for historical pages

* Fix pagination on history view.

* Do not directly use git adapter

* History view: allow selecting from different pages

* Use log_pagination_options to determine latest changes parameters

* Fix JS pageFullPath
2019-08-21 23:28:49 +02:00

12 lines
350 B
Plaintext

<div id="pagination" class="pb-2 px-3">
<span id="prev" {{^previous_page}}hidden{{/previous_page}}>
<a href="?page_num={{previous_page}}">&laquo; Previous</a>
</span>
<span>&nbsp;</span>
<span id="next" class="float-right" {{^next_page}}hidden{{/next_page}}>
<a href="?page_num={{next_page}}">Next &raquo;</a>
</span>
</div>