<% if current_user.signed_in? %>
  • <%= link_to 'My Tendy Zone', root_path, class: "home-link", data: { turbo: false } %>
  • <% end %>
  • <%= link_to 'Public', '/public', data: { turbo: false } %>
  • <%= link_to 'Tokens', tokens_path %>
  • <%= link_to 'Profiles', profiles_path %>
  • <%= link_to 'Projects', projects_path %>
  • <%= link_to 'MetaPurse', metapurses_path %>
  • <% if policy(:canister).index? %>
  • <%= link_to 'Canisters', canisters_path %>
  • <% end %>
  • <%= link_to 'Doodads', doodads_path, data: { turbo: false } %>
  • <% if policy(:bot).index? %>
  • <%= link_to 'Bots', bots_path %>
  • <% end %> <% if policy(:table).index? %>
  • <%= link_to 'Tables', tables_path %>
  • <% end %> <% if policy(:room).index? %>
  • <%= link_to 'Chat', rooms_path %>
  • <% end %> <% if current_user.signed_in? %> <% if current_user.admin? %>
  • <%= link_to 'Users', users_path %>
  • <% end %> <% end %> <% if current_user.signed_in? %>
  • <%= link_to 'My 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 %>