Method: ApplicationHelper#title

Defined in:
lib/generators/frame/layout/templates/app/helpers/application_helper.rb

#title(page_title) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/generators/frame/layout/templates/app/helpers/application_helper.rb', line 2

def title(page_title)
  view_flow.content.delete(:title)
  content_for :title do
    page_title
  end
  page_title
end