Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/templates/pagination/table-nav-arrow.twig
2023-09-12 21:41:04 +02:00

15 lines
412 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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 %}