Created
January 1, 2012 15:28
-
-
Save 3rd-Eden/1547602 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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