Skip to content

Instantly share code, notes, and snippets.

@codef0rmer
Created September 19, 2012 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codef0rmer/3749981 to your computer and use it in GitHub Desktop.
Save codef0rmer/3749981 to your computer and use it in GitHub Desktop.
Page Navigation Bar in Twitter Bootstrap
<div class="well sidebar-nav" ng-app="navList">
<ul class="nav nav-list" ng-controller="navCtrl">
<li ng-class="navClass('home')"><a href='#/home'>Home</a></li>
<li ng-class="navClass('about')"><a href='#/about'>About Us</a></li>
<li ng-class="navClass('contact')"><a href='#/contact'>Contact Us</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment