Created
June 30, 2012 05:47
-
-
Save JFickel/3022498 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header class="navbar navbar-fixed-top"> | |
| <div class="navbar-inner"> | |
| <div class="container"> | |
| <%= link_to "sample app", root_path, id: "logo" %> | |
| <nav> | |
| <ul class="nav pull-right"> | |
| <li><%= link_to "Home", root_path %></li> | |
| <li><%= link_to "Help", help_path %></li> | |
| <% if signed_in? %> | |
| <li><%= link_to "Users", '#' %></li> | |
| <li id="fat-menu" class="dropdown"> | |
| <a href="#" class="dropdown-toggle" data-toggle="dropdown"> | |
| Account <b class="caret"></b> | |
| </a> | |
| <ul class="dropdown-menu"> | |
| <li><%= link_to "Profile", current_user %></li> | |
| <li><%= link_to "Settings", '#' %></li> | |
| <li class="divider"></li> | |
| <li> | |
| <%= link_to "Sign out", signout_path, method: "delete" %> | |
| </li> | |
| </ul> | |
| </li> | |
| <% else %> | |
| <li><%= link_to "Sign in", signin_path %></li> | |
| <% end %> | |
| </ul> | |
| </nav> | |
| </div> | |
| </div> | |
| </header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment