module Kaminari::Helpers::Link

Tag that contains a link

Public Instance Methods

page() click to toggle source

target page number

# File lib/kaminari/helpers/tags.rb, line 35
def page
  raise 'Override page with the actual page value to be a Page.'
end
url() click to toggle source

the link's href

# File lib/kaminari/helpers/tags.rb, line 39
def url
  page_url_for page
end