Report abuse


			
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper

  def super_title
    content_for(:super_title) [:title, :subtitle].join(" + ")
  end

  def title(page_title)
    content_for(:title) { page_title }
  end

  def sub_title(page_sub_title)
    content_for(:sub_title) { page_sub_title }
  end
end