mirror of
https://github.com/tchartron/blow
synced 2024-11-23 21:03:16 +00:00
update
This commit is contained in:
parent
80d665aac2
commit
c0387d3b9c
1 changed files with 12 additions and 8 deletions
|
@ -119,10 +119,12 @@
|
|||
<div class="max-w-7xl px-2 sm:px-6 lg:px-8 mx-auto w-full">
|
||||
<div class="flex items-center justify-between">
|
||||
{% if not paginator.previous %}
|
||||
<svg class="w-7 h-7 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"></path>
|
||||
</svg>
|
||||
<span class="px-3 py-4 bg-gray-200 dark:bg-gray-800 text-gray-800 dark:text-gray-300 bg-gray-400">Previous</span>
|
||||
<span class="px-3 py-4 bg-gray-200 dark:bg-gray-800 text-gray-800 dark:text-gray-300 bg-gray-400">
|
||||
<svg class="w-7 h-7 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"></path>
|
||||
</svg>
|
||||
Previous
|
||||
</span>
|
||||
{% else %}
|
||||
<a class="flex items-center border border-gray-400 dark:border-black rounded-lg text-gray-800 dark:text-gray-300 dark:bg-gray-800 hover:bg-gray-700 text-black dark:hover:bg-gray-600 dark:hover:text-white px-3 py-4 rounded-md text-sm font-medium transform transition duration-500 hover:scale-105 bg-gray-200 dark:bg-gray-800" href="{{ paginator.previous }}" {% if not paginator.previous %}disabled{% endif %}>
|
||||
<svg class="w-7 h-7 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
|
@ -141,10 +143,12 @@
|
|||
{% endfor %}
|
||||
</ul>
|
||||
{% if not paginator.next %}
|
||||
<span class="px-3 py-4 bg-gray-200 dark:bg-gray-800 text-gray-800 dark:text-gray-300 bg-gray-400">Next Page</span>
|
||||
<svg class="w-7 h-7 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
|
||||
</svg>
|
||||
<span class="px-3 py-4 bg-gray-200 dark:bg-gray-800 text-gray-800 dark:text-gray-300 bg-gray-400">
|
||||
Next Page
|
||||
<svg class="w-7 h-7 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
|
||||
</svg>
|
||||
</span>
|
||||
{% else %}
|
||||
<a class="flex items-center border border-gray-400 dark:border-black rounded-lg text-gray-800 dark:text-gray-300 dark:bg-gray-800 hover:bg-gray-700 dark:hover:bg-gray-600 hover:text-white px-3 py-4 rounded-md text-sm font-medium transform transition duration-500 hover:scale-105 bg-gray-200 dark:bg-gray-800" href="{{ paginator.next }}">
|
||||
Next page
|
||||
|
|
Loading…
Reference in a new issue