carlosbrando (owner)

Revisions

gist: 61969 Download_button fork
public
Public Clone URL: git://gist.github.com/61969.git
Embed All Files: show embed
snippet.rb #
1
2
3
4
5
6
7
8
# Should prepare a formatted link in the following format:
# <li><a href="#"><span>Texto</span></a></li>
#
def menu_item(text, url)
  span = content_tag(:span, text)
  link = link_to(span, url, options_for(url))
  content_tag(:li, link)
end