Files
ch420/app/helpers/application_helper.rb
T
2015-10-06 09:38:52 +02:00

7 lines
126 B
Ruby

module ApplicationHelper
def title(page_title)
content_for :title, strip_tags(page_title.to_s)
page_title
end
end