Hi,
Here below the start of my menu_builder method in the applicationhelper (in the view: <%= menu_builder(@page); %>):
def menu_builder(page)
items = [ "home", "faq", "store" ]
content = ""
items.each do |i|
content << content_tag(:a, "#{i.capitalize}", :href => "/#{i}" )
end
return content
end
I would like to render links not tags. I should miss somthing here but I don't find..
Thanks for your help!