first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% set arrows = {
'first-page': '«',
'previous-page': '',
'next-page': '',
'last-page': '»'
}
%}
{% if url %}
<a class="{{ class }}" href="{{ url }}">
<span class="screen-reader-text">{{ label }}</span><span aria-hidden="true">{{ arrows[ class ] }}</span>
</a>
{% else %}
<span class="tablenav-pages-navspan" aria-hidden="true">{{ arrows[ class ] }}</span>
{% endif %}