header.pug 821 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #header
  2. a#brand(href=routes.root)
  3. strong PRISM
  4. span.lightning ⚡
  5. | Break
  6. .menu
  7. .nav.nav-all
  8. if path == 'all'
  9. a.active(href=routes.all)= t['All Projects']
  10. else
  11. a(href=routes.all)= t['All Projects']
  12. .nav.nav-platforms
  13. if path == ''
  14. a.active(href=routes.root)= t.Platforms
  15. else
  16. a(href=routes.root)= t.Platforms
  17. .nav.nav-protocols
  18. if path == 'protocols'
  19. a.active(href=routes.protocols)= t.Protocols
  20. else
  21. a(href=routes.protocols)= t.Protocols
  22. .nav.nav-about
  23. if path == 'about'
  24. a.active(href=routes.about)= t.About
  25. else
  26. a(href=routes.about)= t.About
  27. .nav.nav-donate
  28. a#donate(href="bitcoin:1NAfx5GEZHR8t69LjxTeShPP4XXaxeUqQw")
  29. = t['Donate Bitcoin']