• <%= link_to 'Home', root_path %>
  • <%= link_to 'Games', games_path %>
  • <%= link_to 'Quick Play', quick_play_path %>
  • <% if user_signed_in? %>
  • <%= link_to 'Edit account', edit_user_registration_path %>
  • <%= link_to 'Sign out', destroy_user_session_path, :method=>'delete' %>
  • <% else %>
  • <%= link_to 'Sign in', new_user_session_path %>
  • <%= link_to 'Sign up', new_user_registration_path %>
  • <% end %> <% if user_signed_in? %> <% if current_user.admin? %>
  • <%= link_to 'Admin', '/admin' %>
  • <%= link_to 'Users', users_path %>
  • <% end %> <% end %>
  • <%= link_to 'Debug', '#showDebugTools', id: 'showDebugTools' %>