blob: 2203151a34a2f07442b7df21a589cac4afae2a51 (
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), options
end
end
|