menu_tag(title, link, options = {})click to toggle source
This creates menu entries in the format Zurb Foundation expects. It's just an <li> with a link inside it. menu_tag('Help', help_path) => <li><a href=“/help”>Help</a></li>
# File lib/duffy/duffy_helper.rb, line 6defmenu_tag(title, link, options = {})
ActiveSupport::Deprecation.warn('This method will be removed without replacement in future versions')
content_tag(:li, link_to(title, link), options)
end