Created
October 25, 2012 01:37
-
-
Save joshsmith/3949987 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
| <div id="controls"> | |
| <% if signed_in? %> | |
| <div class="dropdown"> | |
| <a href="#" data-toggle="dropdown" class="dropdown-toggle"><%= current_user.name %> <b class="caret"></b></a> | |
| <ul class="dropdown-menu pull-right" role="menu"> | |
| <li> | |
| <%= link_to("View Profile", user_path(current_user.username)) %> | |
| </li> | |
| <li> | |
| <%= link_to("Edit Profile", edit_user_path(current_user.username)) %> | |
| </li> | |
| <li class="divider"></li> | |
| <li> | |
| <%= link_to("Sign Out", signout_path) %> | |
| </li> | |
| </ul> | |
| </div> | |
| <% else %> | |
| <%= link_to("Sign In", signin_path) %> | |
| <% end %> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment