53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= content_for(:title) || "Farmitry Hvac" %></title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-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="/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 :app, "data-turbo-track": "reload" %>
|
|
<%= javascript_include_tag "application", "data-turbo-track": "reload", type: "module" %>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="min-h-screen min-w-full overflow-x-auto h-full whitespace-nowrap">
|
|
<%= turbo_frame_tag :modals %>
|
|
<main class="flex flex-row h-full min-h-screen" data-controller="sidebar">
|
|
<%= render "partials/sidebar" %>
|
|
<div class="flex flex-col flex-1 w-full h-[100vh]">
|
|
<%= render "partials/header" %>
|
|
<div class="flex-1 h-full pb-0 px-0 lg:pb-4 lg:px-4 lg:overflow-y-auto">
|
|
<div class="flex-1 h-full min-h-full">
|
|
<% if flash[:notice] %>
|
|
<div class="rounded-tl-md rounded-tr-md px-4 py-2 bg-accept text-white">
|
|
<%= raw flash[:notice] %>
|
|
</div>
|
|
<% elsif flash[:alert] %>
|
|
<div class="rounded-tl-md rounded-tr-md px-4 py-2 bg-danger text-white">
|
|
<%= raw flash[:alert] %>
|
|
</div>
|
|
<% end %>
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
<div class="h-10 text-md text-center opacity-60">© 2024 FARMITRY All Rights Reserved.</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|