Skip to content

Instantly share code, notes, and snippets.

@zlw
Created December 17, 2011 14:44
Show Gist options
  • Save zlw/1490386 to your computer and use it in GitHub Desktop.
Save zlw/1490386 to your computer and use it in GitHub Desktop.
SITES = {
facebook: 'http://facebook.com',
twitter: 'http://twitter.com'
}
def icon(name, url)
content_tag :li, link_to(name, url, class: [:sticons, name])
end
def social_icons
[SITES.map {|name, url| icon(name, url)}].join.html_safe
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment