Moving to github

This commit is contained in:
2026-03-28 19:24:29 -04:00
commit 036fa7ab33
302 changed files with 17838 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<title><%= content_for(:title) || "Turbovault Web" %></title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Turbovault Web">
<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="/icon.png" type="image/png">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/icon.png">
<%# Includes all stylesheet files in app/assets/stylesheets %>
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
<%= stylesheet_link_tag "themes", "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
</head>
<body class="<%= user_signed_in? ? current_user.theme_class : 'theme-light' %> bg-gray-50 flex flex-col min-h-screen">
<%= render "layouts/navigation" %>
<%= render "layouts/flash" if flash.any? %>
<main class="container mx-auto px-4 py-8 flex-grow">
<%= yield %>
</main>
<%= render "layouts/footer" %>
</body>
</html>