iu-8.x-1.x-dev/templates/pager.html.twig
templates/pager.html.twig
{#
/**
* @file
* Theme override to display a pager.
*
* Available variables:
* - items: List of pager items.
* The list is keyed by the following elements:
* - first: Item for the first page; not present on the first page of results.
* - previous: Item for the previous page; not present on the first page
* of results.
* - next: Item for the next page; not present on the last page of results.
* - last: Item for the last page; not present on the last page of results.
* - pages: List of pages, keyed by page number.
* Sub-sub elements:
* items.first, items.previous, items.next, items.last, and each item inside
* items.pages contain the following elements:
* - href: URL with appropriate query parameters for the item.
* - attributes: A keyed list of HTML attributes for the item.
* - text: The visible text used for the item link, such as "‹ Previous"
* or "Next ›".
* - current: The page number of the current page.
* - ellipses: If there are more pages than the quantity allows, then an
* ellipsis before or after the listed pages may be present.
* - previous: Present if the currently visible list of pages does not start
* at the first page.
* - next: Present if the visible list of pages ends before the last page.
* - total: The total number of pages.
*
* @see template_preprocess_pager()
*/
#}
{% if items %}
<nav class="pagination-centered" id="filter-pagination" role="navigation" aria-labelledby="pagination-heading">
<h4 id="pagination-heading" class="visually-hidden">{{ 'Pagination'|t }}</h4>
<ul class="pagination inline js-pager__items">
{# Print first item if we are not on the first page. #}
{% if items.first %}
<li class="first">
<a href="{{ items.first.href }}" title="{{ 'Go to first page'|t }}"{{ items.first.attributes|without('href', 'title') }}>
<span class="visually-hidden">{{ 'First page'|t }}</span>
<span aria-hidden="true">{{ items.first.text|default('« First'|t) }}</span>
</a>
</li>
{% endif %}
{# Print previous item if we are not on the first page. #}
{% if items.previous %}
<li class="previous">
<a href="{{ items.previous.href }}" title="{{ 'Go to previous page'|t }}" rel="prev"{{ items.previous.attributes|without('href', 'title', 'rel') }}>
<span class="visually-hidden">{{ 'Previous page'|t }}</span>
<span aria-hidden="true">{{ items.previous.text|default('‹ Previous'|t) }}</span>
</a>
</li>
{% endif %}
{# Add an ellipsis if there are further previous pages. #}
{% if ellipses.previous %}
<li class="ellipsis" role="presentation"></li>
{% endif %}
{# Now generate the actual pager piece. #}
{% for key, item in items.pages %}
<li{{ current == key ? ' class="current"' }}>
{% if current == key %}
{% set title = 'Current page'|t %}
{% else %}
{% set title = 'Go to page @key'|t({'@key': key}) %}
{% endif %}
<a href="{{ item.href }}" title="{{ title }}"{{ item.attributes|without('href', 'title') }}>
<span class="visually-hidden">
{{ current == key ? 'Current page'|t : 'Page'|t }}
</span>
{{- key -}}
</a>
</li>
{% endfor %}
{# Add an ellipsis if there are further next pages. #}
{% if ellipses.next %}
<li class="ellipsis" role="presentation"></li>
{% endif %}
{# Print next item if we are not on the last page. #}
{% if items.next %}
<li class="next">
<a href="{{ items.next.href }}" title="{{ 'Go to next page'|t }}" rel="next"{{ items.next.attributes|without('href', 'title', 'rel') }}>
<span class="visually-hidden">{{ 'Next page'|t }}</span>
<span aria-hidden="true">{{ items.next.text|default('Next ›'|t) }}</span>
</a>
</li>
{% endif %}
{# Print last item if we are not on the last page. #}
{% if items.last %}
<li class="last">
<a href="{{ items.last.href }}" title="{{ 'Go to last page'|t }}"{{ items.last.attributes|without('href', 'title') }}>
<span class="visually-hidden">{{ 'Last page'|t }}</span>
<span aria-hidden="true">{{ items.last.text|default('Last »'|t) }}</span>
</a>
</li>
{% endif %}
</ul>
</nav>
<div id="filter-pagination-mobile">
{# Print previous item if we are not on the first page. #}
{% if items.previous %}
<a class="button previous" href="{{ items.previous.href }}" title="{{ 'Go to previous page'|t }}" rel="prev"{{ items.previous.attributes|without('href', 'title', 'rel') }}>
<span class="visually-hidden">{{ 'Previous page'|t }}</span>
<span aria-hidden="true">{{ '«'|t }}</span>
</a>
{% else %}
<span class="button previous disabled">
<span class="visually-hidden">{{ 'Previous page'|t }}</span>
<span aria-hidden="true">{{ '«'|t }}</span>
</span>
{% endif %}
{# Generate the mobile pager dropdown. #}
<a class="button selector">
{% trans %} Page {{ current }} of {{ total }}{% endtrans %}
<label for="pagination" class="show-for-sr">Page</label>
<select id="pagination" class="pagination">
{% for key, item in items.pages %}
<option value="{{ item.href }}" {{ current == key ? ' selected=""' }}>
{{- key -}}
</option>
{% endfor %}
</select>
</a>
{# Print next item if we are not on the last page. #}
{% if items.next %}
<a class="button next" href="{{ items.next.href }}" title="{{ 'Go to next page'|t }}" rel="next"{{ items.next.attributes|without('href', 'title', 'rel') }}>
<span class="visually-hidden">{{ 'Next page'|t }}</span>
<span aria-hidden="true">{{ '»'|t }}</span>
</a>
{% else %}
<span class="button next disabled">
<span class="visually-hidden">{{ 'Next page'|t }}</span>
<span aria-hidden="true">{{ '»'|t }}</span>
</span>
{% endif %}
</div>
{% endif %}
