theseus/app/views/layouts/public.html.erb
2026-04-01 08:34:04 -04:00

41 lines
1.1 KiB
Text

<!DOCTYPE html>
<html>
<head>
<title><%= content_for(:title) || "Hack Club Mail" %></title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= yield :head %>
<%# Enable PWA manifest for installable apps (make sure to enable in config/routes.rb too!) %>
<%#= tag.link rel: "manifest", href: pwa_manifest_path(format: :json) %>
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.png" type="image/png">
<link rel="apple-touch-icon" href="/icon.png">
<%= vite_client_tag %>
<%= vite_javascript_tag 'public' %>
<%= vite_stylesheet_tag 'public.scss' %>
<%= vite_stylesheet_tag '98.css' %>
</head>
<body
<% if Rails.env.development? %> class="not_prod"
<% end %> data-turbo="false">
<% if Rails.env.development? %>
<div class="dev-border-overlay"></div>
<% end %>
<%= render 'public/backend_controls' %>
<%= render "shared/flash" %>
<%= yield %>
</body>
</html>