2025-02-21 11:57:59 -05:00
|
|
|
<!DOCTYPE html>
|
2025-04-18 10:48:10 -04:00
|
|
|
<html class="h-full text-primary overflow-hidden lg:overflow-auto font-sans <%= @os %>" lang="en" data-controller="theme" data-theme-user-preference-value="<%= Current.user&.theme || "system" %>">
|
2025-02-21 11:57:59 -05:00
|
|
|
<head>
|
|
|
|
<%= render "layouts/shared/head" %>
|
|
|
|
<%= yield :head %>
|
|
|
|
</head>
|
|
|
|
|
2025-04-18 18:53:10 +05:30
|
|
|
<body class="h-screen overflow-hidden lg:overflow-auto antialiased h-screen-safe ">
|
2025-04-18 11:39:58 -04:00
|
|
|
<div class="fixed z-50 top-6 md:top-4 md:left-1/2 -translate-x-1/2 w-full md:w-80 mx-auto md:mx-0 md:right-auto mt-safe">
|
2025-03-10 11:20:58 -05:00
|
|
|
<div id="notification-tray" class="space-y-1 w-full">
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= render_flash_notifications %>
|
|
|
|
|
2025-04-18 11:39:58 -04:00
|
|
|
<div id="cta"></div>
|
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<% if Current.family&.syncing? %>
|
2025-04-18 11:39:58 -04:00
|
|
|
<% render "shared/notifications/loading", id: "syncing-notice", message: "Syncing accounts data..." %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= family_stream %>
|
|
|
|
|
|
|
|
<%= turbo_frame_tag "modal" %>
|
|
|
|
<%= turbo_frame_tag "drawer" %>
|
|
|
|
<%= render "shared/confirm_modal" %>
|
|
|
|
|
|
|
|
<%= render "impersonation_sessions/super_admin_bar" if Current.true_user&.super_admin? && show_super_admin_bar? %>
|
|
|
|
<%= render "impersonation_sessions/approval_bar" if Current.true_user&.impersonated_support_sessions&.initiated&.any? %>
|
|
|
|
|
|
|
|
<%= yield %>
|
|
|
|
</body>
|
|
|
|
</html>
|