#
#
anchor_tags
The previous_tag
and next_tag
return the enabled/disabled previous/next page anchor tag.
Useful to build minimalistic helpers UIs that don't use nav bar links (e.g. :countless
, :keyset
paginators).
previous_tag
works with all paginators but :keyset
next_tag
works with all paginators
<%== @pagy.previous_tag %>
<%== @pagy.next_tag %>
>> puts @pagy.previous_tag
<a href="/path?example=123&page=2" aria-label="Previous"><</a>
=> nil
>> puts @pagy.next_tag
<a href="/path?example=123&page=4" aria-label="Next">></a>
=> nil
>> puts @pagy.next_tag(text: 'Show Next', aria_label: 'my-next')
<a href="/path?example=123&page=4" aria-label="my-next">Show Next</a>
=> nil
text: 'My Page'
- Override the default generated page label
aria_label: 'My Link'
- Override the default aria label string looked up in the dictionary
See also Common URL Options