Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nguyenlocduy/2915442 to your computer and use it in GitHub Desktop.
Save nguyenlocduy/2915442 to your computer and use it in GitHub Desktop.
Override footer content in Active Admin gem
# 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} #{link_to('Example.com', 'http://example.com')}. Powered by #{link_to('Active Admin', 'http://www.activeadmin.info')} #{ActiveAdmin::VERSION}".html_safe
end
end
end
# app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
protect_from_forgery
# Override build_footer method in ActiveAdmin::Views::Pages
require 'active_admin_views_pages_base.rb'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment