master
kek7198 2021-12-21 22:09:20 -06:00
parent cb64dacd76
commit b2729150f9
1 changed files with 3 additions and 3 deletions

View File

@ -73,15 +73,15 @@
{% block pagenav %}
<nav aria-label="Page navigation">
<ul class="pagination pagination-sm mb-0">
<li class="page-item{% if page==1 %} disabled{% endif %}">
<ul class="flex flex-wrap items-center mb-0">
<li class="{% if page==1 %} disabled{% endif %}">
<small>
<a class="block px-2 py-1 text-sm font-bold text-primary bg-gray-900" href="?sort={{sort}}&q={{query | urlencode}}&t={{t}}&page={{page-1}}" tabindex="-1" {% if page==1 %}aria-disabled="true"{% endif %}>
Previous
</a>
</small>
</li>
<li class="page-item{% if not next_exists %} disabled{% endif %}">
<li class="{% if not next_exists %} disabled{% endif %}">
<small>
<a class="block px-2 py-1 text-sm font-bold text-primary bg-gray-900" href="?sort={{sort}}&q={{query | urlencode}}&t={{t}}&page={{page+1}}">Next</a>
</small>