Sha256: 8c7daa6cdbe3ec736eb0a2e880b98cf691fdc89c6f645678ea98909005a8364e

Contents?: true

Size: 1.37 KB

Versions: 23

Compression:

Stored size: 1.37 KB

Contents

-# This template is i18n-ready: if you don't use i18n, then you can replace the pagy_t
-# calls with the actual strings ("‹ Prev", "Next ›", "…").

-# The link variable is set to a proc that returns the link tag.
-# Usage: link.call( page_number [, text [, extra_attributes_string ]])

- link = pagy_link_proc(pagy, 'class="page-link"')

%nav.pagy-bootstrap-nav.pagination{"aria-label" => "pager", :role => "navigation"}

  %ul.pagination

    - if pagy.prev
      %li.page-item.prev!= link.call(pagy.prev, pagy_t('pagy.nav.prev'), 'aria-label="previous"')
    - else
      %li.page-item.prev.disabled
        %a.page-link{:href => '#'}!= pagy_t('pagy.nav.prev')

    - pagy.series.each do |item|                      # series example: [1, :gap, 7, 8, "9", 10, 11, :gap, 36]
      - if item.is_a?(Integer)                        # page link
        %li.page-item!= link.call(item)

      - elsif item.is_a?(String)                      # current page
        %li.page-item.active!= link.call(item)

      - elsif item == :gap                            # page gap
        %li.page-item.disabled.gap
          %a.page-link{:href => "#"}!= pagy_t('pagy.nav.gap')

    - if pagy.next
      %li.page-item.next!= link.call(pagy.next, pagy_t('pagy.nav.next'), 'aria-label="next"')
    - else
      %li.page-item.next.disabled
        %a.page-link{:href => '#'}!= pagy_t('pagy.nav.next')

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
pagy-3.7.2 lib/templates/bootstrap_nav.html.haml
pagy-3.7.1 lib/templates/bootstrap_nav.html.haml
pagy-3.7.0 lib/templates/bootstrap_nav.html.haml
pagy-3.6.0 lib/templates/bootstrap_nav.html.haml
pagy-3.5.1 lib/templates/bootstrap_nav.html.haml
pagy-3.5.0 lib/templates/bootstrap_nav.html.haml
pagy-3.4.1 lib/templates/bootstrap_nav.html.haml
pagy-3.4.0 lib/templates/bootstrap_nav.html.haml
pagy-3.3.2 lib/templates/bootstrap_nav.html.haml
pagy-3.3.1 lib/templates/bootstrap_nav.html.haml
pagy-3.3.0 lib/templates/bootstrap_nav.html.haml
pagy-3.2.1 lib/templates/bootstrap_nav.html.haml
pagy-3.2.0 lib/templates/bootstrap_nav.html.haml
pagy-3.1.0 lib/templates/bootstrap_nav.html.haml
pagy-3.0.0 lib/templates/bootstrap_nav.html.haml
pagy-2.1.5 lib/templates/bootstrap_nav.html.haml
pagy-2.1.4 lib/templates/bootstrap_nav.html.haml
pagy-2.1.3 lib/templates/bootstrap_nav.html.haml
pagy-2.1.2 lib/templates/bootstrap_nav.html.haml
pagy-2.1.1 lib/templates/bootstrap_nav.html.haml