2020-06-26 02:09:03 -04:00
|
|
|
.gl-pagination.gl-mt-3
|
2018-06-05 12:38:22 -04:00
|
|
|
%ul.pagination.justify-content-center
|
2017-08-10 09:01:38 -04:00
|
|
|
- if previous_path
|
2018-04-10 15:56:58 -04:00
|
|
|
%li.page-item.prev
|
2020-01-24 10:09:00 -05:00
|
|
|
= link_to previous_path, rel: 'prev', class: 'page-link' do
|
|
|
|
= sprite_icon('angle-left', size: 8)
|
|
|
|
= s_('Pagination|Prev')
|
2017-08-10 09:01:38 -04:00
|
|
|
- if next_path
|
2018-04-10 15:56:58 -04:00
|
|
|
%li.page-item.next
|
2020-01-24 10:09:00 -05:00
|
|
|
= link_to next_path, rel: 'next', class: 'page-link' do
|
|
|
|
= s_('Pagination|Next')
|
|
|
|
= sprite_icon('angle-right', size: 8)
|