templates/paginator.html.twig line 1

  1. {#
  2. /**
  3. * @file
  4. * Twitter Bootstrap v4 Sliding pagination control implementation.
  5. *
  6. * View that can be used with the pagination module
  7. * from the Twitter Bootstrap CSS Toolkit
  8. * https://getbootstrap.com/docs/4.5/components/pagination/
  9. *
  10. */
  11. #}
  12. {% if pageCount > 1 %}
  13. {% set classAlign = (align is not defined) ? '' : align=='center' ? ' justify-content-center' : (align=='right' ? ' justify-content-end' : '') %}
  14. {% set classSize = (size is not defined) ? '' : size=='large' ? ' pagination-lg' : (size=='small' ? ' pagination-sm' : '') %}
  15. {% endif %}