12 lines
246 B
Ruby
12 lines
246 B
Ruby
|
|
module SitemapHelper
|
||
|
|
|
||
|
|
def link(path, default_title)
|
||
|
|
custom_title = @custom_titles.select {|a| a.path == path }.last
|
||
|
|
if custom_title
|
||
|
|
link_to(custom_title.title, path)
|
||
|
|
else
|
||
|
|
link_to(default_title, path)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|