Files
ch420/app/helpers/application_helper.rb
T

7 lines
126 B
Ruby
Raw Normal View History

2015-10-02 21:05:03 +02:00
module ApplicationHelper
2015-10-05 12:40:08 +02:00
def title(page_title)
2015-10-06 09:38:52 +02:00
content_for :title, strip_tags(page_title.to_s)
2015-10-05 12:40:08 +02:00
page_title
end
2015-10-02 21:05:03 +02:00
end