5 lines
99 B
Ruby
5 lines
99 B
Ruby
module ApplicationHelper
|
|
def title (page_title)
|
|
content_for(:title) { page_title }
|
|
end
|
|
end
|