class ActiveAdmin::Views::IndexAsBlog

def build_title(post)

def build_title(post)
  if @title
    h3 do
      link_to(call_method_or_proc_on(post, @title), resource_path(post))
    end
  else
    h3 do
      auto_link(post)
    end
  end
end