Skip to content

Instantly share code, notes, and snippets.

@Taova
Last active October 25, 2015 13:41
Show Gist options
  • Save Taova/95b673bb880503380d4c to your computer and use it in GitHub Desktop.
Save Taova/95b673bb880503380d4c to your computer and use it in GitHub Desktop.
mixin nav(className, items, activeInd)
nav(class=className)
ul(class=className + "__lyst")
each item, indx in items
li(class=className + "__item"+((activeInd==indx) ? className +"__item"+"active": ""))
a(href="#" class=className + "__link")= item
//+nav("minor", ["Планшеты", "Мобильные телефоны", "Мр3 плееры", "Персональные компьютеры"], 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment