Skip to content

Instantly share code, notes, and snippets.

@scaffeinate
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save scaffeinate/dba047c4560202e6d36b to your computer and use it in GitHub Desktop.

Select an option

Save scaffeinate/dba047c4560202e6d36b to your computer and use it in GitHub Desktop.
Navbar Socify
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-top">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<%= link_to "Socify", root_url, class: "navbar-brand" %>
</div>
<div class="collapse navbar-collapse" id="navbar-top">
<ul class="nav navbar-nav navbar-right">
<% if user_signed_in? %>
<li><%= link_to('Sign out', destroy_user_session_path, method: :delete) %></li>
<% else %>
<li><%= link_to 'Sign up', new_user_registration_path %></li>
<li><%= link_to 'Sign in', user_session_path %></li>
<% end %>
</ul>
</div>
</div>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment