Sha256: c94433fd6ce2c6edac8a6ecf3d632802fa44a5f07c5c2c6ea968a21378ba04bd

Contents?: true

Size: 1.19 KB

Versions: 62

Compression:

Stored size: 1.19 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)

%nav.pagy-foundation-nav{"role" => "navigation", "aria-label" => "Pagination"}

  %ul.pagination

    - if pagy.prev
      %li.prev!= link.call(pagy.prev, pagy_t('pagy.nav.prev'), 'aria-label="previous"')
    - else
      %li.prev.disabled
        != 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!= link.call(item)

      - elsif item.is_a?(String)                      # current page
        %li.current
          = item

      - elsif item == :gap                            # page gap
        %li.ellipsis.gap{"aria-hidden" => true}

    - if pagy.next
      %li.next!= link.call(pagy.next, pagy_t('pagy.nav.next'), 'aria-label="next"')
    - else
      %li.next.disabled
        != pagy_t('pagy.nav.next')

Version data entries

62 entries across 62 versions & 2 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/pagy-4.11.0/lib/templates/foundation_nav.html.haml
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/pagy-4.11.0/lib/templates/foundation_nav.html.haml
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/pagy-4.11.0/lib/templates/foundation_nav.html.haml
pagy-5.1.3 lib/templates/foundation_nav.html.haml
pagy-5.1.2 lib/templates/foundation_nav.html.haml
pagy-5.1.1 lib/templates/foundation_nav.html.haml
pagy-5.1.0 lib/templates/foundation_nav.html.haml
pagy-5.0.1 lib/templates/foundation_nav.html.haml
pagy-5.0.0 lib/templates/foundation_nav.html.haml
pagy-4.11.0 lib/templates/foundation_nav.html.haml
pagy-4.10.2 lib/templates/foundation_nav.html.haml
pagy-4.10.1 lib/templates/foundation_nav.html.haml
pagy-4.10.0 lib/templates/foundation_nav.html.haml
pagy-4.9.0 lib/templates/foundation_nav.html.haml
pagy-4.8.1 lib/templates/foundation_nav.html.haml
pagy-3.14.0 lib/templates/foundation_nav.html.haml
pagy-4.8.0 lib/templates/foundation_nav.html.haml
pagy-4.7.1 lib/templates/foundation_nav.html.haml
pagy-4.7.0 lib/templates/foundation_nav.html.haml
pagy-4.6.0 lib/templates/foundation_nav.html.haml