Newer
Older
dmpopidor / lib / active_admin_views_pages_base.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 353 bytes DMPonline4 - RAILS 4.0 (#4)
# lib/active_admin_views_pages_base.rb
 
class ActiveAdmin::Views::Pages::Base < Arbre::HTML::Document
 
  private
 
  # Renders the content for the footer
  def build_footer
    div :id => "footer" do
      para "Copyright &copy; #{Date.today.year.to_s}".html_safe
      												#{link_to('Example.com', 'http://example.com')}. 
    end
  end
 
end