10 lines
215 B
Ruby
10 lines
215 B
Ruby
module ApplicationHelper
|
|
def title(page_title)
|
|
content_for(:title) { page_title.to_s }
|
|
end
|
|
|
|
def yield_or_default(section, default = '')
|
|
content_for?(section) ? content_for(section) : default
|
|
end
|
|
end
|