Skip to content

Instantly share code, notes, and snippets.

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

  • Save epoch/a33adfe83358c7b00212 to your computer and use it in GitHub Desktop.

Select an option

Save epoch/a33adfe83358c7b00212 to your computer and use it in GitHub Desktop.
nav_menu as a partial
<li><%= link_to 'home', root_path %></li>
<% if @current_user.present? %>
<li><%= link_to 'sign out', login_path, :method => :delete %></li>
<% else %>
<li><%= link_to 'sign up' new_user_path %></li>
<li><%= link_to 'login', login_path %></li>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment