Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

views-mini-pager.html.twig

Same filename in this branch
  1. 11.1.x core/themes/olivero/templates/views/views-mini-pager.html.twig
  2. 11.1.x core/themes/stable9/templates/views/views-mini-pager.html.twig
  3. 11.1.x core/themes/starterkit_theme/templates/views/views-mini-pager.html.twig
  4. 11.1.x core/themes/claro/templates/views/views-mini-pager.html.twig
  5. 11.1.x core/modules/views/templates/views-mini-pager.html.twig

Theme override for a views mini-pager.

Available variables:

  • heading_id: Pagination heading ID.
  • pagination_heading_level: The heading level to use for the pager.
  • items: List of pager items.

See also

template_preprocess_views_mini_pager()

File

core/profiles/demo_umami/themes/umami/templates/classy/views/views-mini-pager.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a views mini-pager.
  5. *
  6. * Available variables:
  7. * - heading_id: Pagination heading ID.
  8. * - pagination_heading_level: The heading level to use for the pager.
  9. * - items: List of pager items.
  10. *
  11. * @see template_preprocess_views_mini_pager()
  12. */
  13. #}
  14. {% if items.previous or items.next %}
  15. <nav class="pager" role="navigation" aria-labelledby="{{ heading_id }}">
  16. <{{ pagination_heading_level }} id="{{ heading_id }}" class="pager__heading visually-hidden">{{ 'Pagination'|t }}</{{ pagination_heading_level }}>
  17. <ul class="pager__items js-pager__items">
  18. {% if items.previous %}
  19. <li class="pager__item pager__item--previous">
  20. <a href="{{ items.previous.href }}" title="{{ 'Go to previous page'|t }}" rel="prev"{{ items.previous.attributes|without('href', 'title', 'rel') }}>
  21. <span class="visually-hidden">{{ 'Previous page'|t }}</span>
  22. <span aria-hidden="true">{{ items.previous.text|default('‹‹'|t) }}</span>
  23. </a>
  24. </li>
  25. {% endif %}
  26. {% if items.current %}
  27. <li class="pager__item is-active">
  28. {% trans %}
  29. Page {{ items.current }}
  30. {% endtrans %}
  31. </li>
  32. {% endif %}
  33. {% if items.next %}
  34. <li class="pager__item pager__item--next">
  35. <a href="{{ items.next.href }}" title="{{ 'Go to next page'|t }}" rel="next"{{ items.next.attributes|without('href', 'title', 'rel') }}>
  36. <span class="visually-hidden">{{ 'Next page'|t }}</span>
  37. <span aria-hidden="true">{{ items.next.text|default('››'|t) }}</span>
  38. </a>
  39. </li>
  40. {% endif %}
  41. </ul>
  42. </nav>
  43. {% endif %}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal