mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
31 lines
1 KiB
Text
31 lines
1 KiB
Text
<!DOCTYPE html>
|
|
<html data-theme="dark">
|
|
<head>
|
|
<title>Dawarich</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.7.2/dist/full.css" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
|
|
|
<%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
<%= javascript_importmap_tags %>
|
|
</head>
|
|
|
|
<body class='min-h-screen'>
|
|
<div class='container mx-auto'>
|
|
<%= render 'shared/navbar' %>
|
|
<%= render 'shared/flash' %>
|
|
<div class="flex flex-row gap-5">
|
|
<div class='w-3/4 mt-10'>
|
|
<%= yield %>
|
|
</div>
|
|
<div class='w-1/4 mt-10'>
|
|
<%= render 'shared/right_sidebar' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|