Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DevGW/c2554617c4694309a3144fa43b07ca52 to your computer and use it in GitHub Desktop.
Save DevGW/c2554617c4694309a3144fa43b07ca52 to your computer and use it in GitHub Desktop.
Ruby / Rails :: app/views/layouts/_header.html.erb if signed in...show menu #RoR
<ul class="nav pull-right">
<li><%= link_to "Home", root_path %></li>
<li><%= link_to "Help", help_path %></li>
<% if user_signed_in? %>
<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", edit_user_registration_path %></li>
<li><%= link_to "Settings", '#' %></li>
<li class="divider"></li>
<li>
<%= link_to "Logout", destroy_user_session_path, :method => :delete %>
</li>
</ul>
</li>
<li> <%= link_to "Logout", destroy_user_session_path, :method => :delete %></li>
<% else %>
<li><%= link_to "Sign in", new_user_session_path %></li>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment