class TrustyCms::Pagination::LinkRenderer

def page_link(page, text, attributes = {})

but it can get by without much context to draw on
this is rather crude compared to the WillPaginate link-builder,
def page_link(page, text, attributes = {})
  linkclass = %{ class="#{attributes[:class]}"} if attributes[:class]
  linkrel = %{ rel="#{attributes[:rel]}"} if attributes[:rel]
  param_name = WillPaginate::ViewHelpers.pagination_options[:param_name]
  %Q{<a href="#{@url_stem}?#{param_name}=#{page}"#{linkrel}#{linkclass}>#{text}</a>}
end