Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <!-- Navigation -->
  2. <nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
  3. <div class="container">
  4. <div class="navbar-header">
  5. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
  6. <i class="fa fa-bars"></i>
  7. </button>
  8. <a class="navbar-brand page-scroll logo-header" href="#page-top">
  9. </a>
  10. </div>
  11.  
  12. <!-- Collect the nav links, forms, and other content for toggling -->
  13. <div class="collapse navbar-collapse navbar-right navbar-main-collapse">
  14. <ul class="nav navbar-nav">
  15. <!-- Hidden li included to remove active class from about link when scrolled up past about section -->
  16. <li class="hidden">
  17. <a href="#page-top"></a>
  18. </li>
  19. {% for link in site.links %}
  20. {% if link.url | contains('http') %}
  21. {% set domain = '' %}
  22. {% elseif link.url | contains('#') %}
  23. {% set domain = '' %}
  24. {% else %}
  25. {% set domain = base_url_absolute %}
  26. {% endif %}
  27. <li><a class="page-scroll" href="{{ domain }}{{ link.url }}" {% if link.url | contains('http') %}target="_blank"{% endif %}>{{ link.title }}</a></li>
  28. {% endfor %}
  29.  
  30. {% if theme_config.dropdown.enabled %}
  31. {{ _self.loop(pages) }}
  32. {% else %}
  33. {% for page in pages.children.visible %}
  34. {% set current_page = (page.active or page.activeChild) ? 'active' : '' %}
  35. <li class="{{ current_page }}">
  36. <a href="{{ page.url }}">
  37. {% if page.header.icon %}<i class="fa fa-{{ page.header.icon }}"></i>{% endif %}
  38. {{ page.menu }}
  39. </a>
  40. </li>
  41. {% endfor %}
  42. {% endif %}
  43.  
  44. </ul>
  45. </div>
  46. <!-- /.navbar-collapse -->
  47. </div>
  48. <!-- /.container -->
  49.  
  50. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement