Skip to content

Instantly share code, notes, and snippets.

@vormwald
Forked from thatfunkymunki/application_helper.rb
Created January 10, 2012 02:09
Show Gist options
  • Save vormwald/1586384 to your computer and use it in GitHub Desktop.
Save vormwald/1586384 to your computer and use it in GitHub Desktop.
Make will_paginate generate HTML that Zurb Fundation will render nicely, fixed for will_paginate 3.0.2
# Based on https://gist.github.com/1205828, in turn based on https://gist.github.com/1182136
# Modified for Zurb Foundation
class BootstrapLinkRenderer < ::WillPaginate::ActionView::LinkRenderer
protected
def html_container(html)
tag(:ul, html, container_attributes)
end
def page_number(page)
tag :li, link(page, page, :rel => rel_value(page)), :class => ('active' if page == current_page)
end
def gap
tag :li, link(super, '#'), :class => 'unavailable'
end
def previous_or_next_page(page, text, classname)
tag :li, link(text, page || '#'), :class => [classname[0..3], classname, ('unavailable' unless page)].join(' ')
end
end
def page_navigation_links(pages)
will_paginate(pages, :class => 'pagination', :inner_window => 2, :outer_window => 0, :renderer => BootstrapLinkRenderer, :previous_label => '&laquo;'.html_safe, :next_label => '&raquo;'.html_safe)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment