Advertisement
AndreasFurster

Untitled

Jul 3rd, 2014
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.68 KB | None | 0 0
  1. <nav class="navbar-collapse bs-navbar-collapse navbar-default" role="navigation">
  2.     <ul class="nav navbar-nav" id="MainNavigation">
  3.         {{#recursive navigationItems}}
  4.         {{#unless children}}
  5.         <li>
  6.             <a href="#{{href}}" title="{{title}}">{{text}}</a>
  7.         {{/unless}}
  8.         {{#if children}}
  9.         <li class="dropdown">
  10.             <a href="#{{href}}" title="{{title}}" class="dropdown-toggle" data-toggle="dropdown">{{text}}<span class="caret"></span></a>
  11.             <ul class="dropdown-menu">
  12.                 {{{recursive children}}}
  13.             </ul>
  14.         {{/if}}
  15.         </li>
  16.         {{/recursive}}
  17.     </ul>
  18.     <a class="navbar-right navbar-brand" href="#WebApp_logout"><span class="glyphicon glyphicon-log-out"></span>&nbsp;Uitloggen</a>
  19. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement