forked from hacc/haccfiles
stuebinm
41d82ae436
we decided to: - get rid of unused packages - simpify the directory layout since we only have one host anyways - move our docs (such as they are) in-tree
15 lines
485 B
HTML
15 lines
485 B
HTML
{% macro paginator_nav(paginator) %}
|
|
|
|
<nav>
|
|
<p>
|
|
{% if paginator.previous %}
|
|
<a href="{{ paginator.previous }}">« Previous</a> |
|
|
{% endif %}
|
|
<span>Page {{ paginator.current_index }} of {{ paginator.number_pagers }}</span>
|
|
{% if paginator.next %}
|
|
| <a href="{{ paginator.next }}">Next »</a>
|
|
{% endif %}
|
|
</p>
|
|
</nav>
|
|
|
|
{% endmacro paginator_nav %}
|