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