big overhaul

This commit is contained in:
speyll
2025-04-09 16:09:59 +01:00
parent ae125d2bc6
commit 9af0a02acd
32 changed files with 517 additions and 410 deletions

View File

@@ -0,0 +1,17 @@
<nav class="pagination" aria-label="Pagination">
<div class="pagination-inner">
{% if paginator.previous %}
<a href="{{ paginator.previous }}" class="page-item" aria-label="Previous page">
<svg class="icon"><use href="{{ get_url(path='icons.svg#chevronLeft') }}"></use></svg>
</a>
{% endif %}
<span class="page-current accent-data">{{ paginator.current_index }} of {{ paginator.number_pagers }}</span>
{% if paginator.next %}
<a href="{{ paginator.next }}" class="page-item" aria-label="Next page">
<svg class="icon"><use href="{{ get_url(path='icons.svg#chevronRight') }}"></use></svg>
</a>
{% endif %}
</div>
</nav>