Skip to content

Instantly share code, notes, and snippets.

@domagude
Created October 14, 2017 12:18
Show Gist options
  • Save domagude/d0872bb9424c9ef05b48d9ac6f91f3ba to your computer and use it in GitHub Desktop.
Save domagude/d0872bb9424c9ef05b48d9ac6f91f3ba to your computer and use it in GitHub Desktop.
Navigation bar scaffold
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment