class ActiveAdmin::Views::Pages::Show

def title

def title
  case config[:title]
  when Symbol, Proc
    call_method_or_proc_on(resource, config[:title])
  when String
    config[:title]
  else
    default_title
  end
end