Skip to content

Instantly share code, notes, and snippets.

@3rd-Eden
Created January 1, 2012 15:28
Show Gist options
  • Save 3rd-Eden/1547602 to your computer and use it in GitHub Desktop.
Save 3rd-Eden/1547602 to your computer and use it in GitHub Desktop.
mixin bar(active)
- var topbar = [
- { href: '/', title: 'Home' }
- , { href: '/foo', title: 'bar' }
- ];
each item in topbar
if item.title === active.toLowerCase()
li.active: a(href="#{item.href}", title="#{item.title}")= item.title
else
li: a(href="#{item.href}", title="#{item.title}")= item.title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment