blob: 209cbc4a95e6f4bf7daf3c588874edf7ffe7123f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module TitleHelper
def title(title = nil)
if title
@title = title
else
@title
end
end
def title_tag(title, options = nil)
content_tag :h2, title(title).html_safe, options
end
end
|