mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 19:21:13 +01:00
4ada50985a
* Replace will_paginate with kaminari * Use #page instead of #paginate in controllers * Replace will_paginate.page_gap with pagination.truncate in i18n * Customize kaminari views to match prior styles * Set kaminari options to match prior behavior * Replace will_paginate with paginate in views
9 lines
448 B
Text
9 lines
448 B
Text
-# Link to the "Next" page
|
|
-# available local variables
|
|
-# url: url to the next page
|
|
-# current_page: a page object for the currently displayed page
|
|
-# total_pages: total number of pages
|
|
-# per_page: number of items to fetch per page
|
|
-# remote: data-remote
|
|
%span.next
|
|
= link_to_unless current_page.last?, safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), url, rel: 'next', remote: remote
|