<%= csrf_meta_tags %> <%= csp_meta_tag %> <%= stylesheet_link_tag "application" %> <%= javascript_importmap_tags %>
<% if user_signed_in? %> <%= image_link_to t(:sign_out), "logout", destroy_user_session_path, data: { turbo: true, turbo_method: :delete } %> <%= image_link_to t(:profile), "account-wrench-outline", edit_user_registration_path, current: :hide %> <% else %> <%= image_link_to t(:register), "account-plus-outline", new_user_registration_path, current: :hide %> <%= image_link_to t(:sign_in), "login", new_user_session_path, current: :hide %> <% end %>
<% flash.each do |entry, message| %>
<%= sanitize message %>
<% end %>
<%# Allow overwriting/clearing navigation menu for some views %> <%= yield %>