38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html class='h-full'>
|
|
<head>
|
|
<title>ReFurrer</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<% if Object.const_defined?("Rack::MiniProfiler") %>
|
|
<% # needed so miniprofiler doens't screw with the fetch() api %>
|
|
<script type='text/javascript'>
|
|
if(!window.MiniProfiler) {
|
|
window.MiniProfiler = {};
|
|
}
|
|
window.MiniProfiler.patchesApplied = true;
|
|
</script>
|
|
<% end %>
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
<%= javascript_pack_tag "application-bundle" %>
|
|
<%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
|
|
<%= yield :head %>
|
|
</head>
|
|
<body class="mx-0 flex flex-col h-full">
|
|
<header class="bg-slate-100 border-slate-200 border-b-2">
|
|
<div class="mx-auto max-w-5xl py-6 px-6 sm:px-8 flex items-baseline">
|
|
<h1 class="text-4xl sm:text-5xl font-bold text-slate-900">
|
|
<%= link_to "ReFurrer", root_path %>
|
|
</h1>
|
|
<div class="flex-grow"></div>
|
|
<h2 class="text-1xl sm:text-2xl italic font-bold text-slate-500">
|
|
Furry Swiss Army Knife
|
|
</h2>
|
|
</div>
|
|
</header>
|
|
<main class="flex flex-col grow bg-slate-200">
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|