2024-08-04 07:06:03 +02:00
|
|
|
<!DOCTYPE html>
|
2025-04-23 07:45:33 +02:00
|
|
|
<html lang="<%= I18n.locale %>">
|
2024-08-04 07:06:03 +02:00
|
|
|
<head>
|
2025-04-23 07:45:33 +02:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) : "Terminator" %></title>
|
2025-05-28 17:23:07 +02:00
|
|
|
<link rel="manifest" crossorigin="use-credentials" href="/manifest.json" />
|
2024-08-04 07:06:03 +02:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
|
<%= csp_meta_tag %>
|
2024-08-11 14:18:36 +02:00
|
|
|
<link rel="stylesheet" href="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.css" />
|
|
|
|
|
<script src="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.js"></script>
|
2025-02-17 19:12:40 +01:00
|
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
|
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
2025-03-03 19:04:30 +00:00
|
|
|
|
2024-08-11 14:18:36 +02:00
|
|
|
|
2024-08-04 07:06:03 +02:00
|
|
|
<%= javascript_importmap_tags %>
|
2025-02-27 07:45:54 +01:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/css/tom-select.css" rel="stylesheet">
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/js/tom-select.complete.min.js"></script>
|
2024-08-04 07:06:03 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2024-08-24 07:06:09 +02:00
|
|
|
<main class="container mx-auto mt-28 px-5 flex">
|
2024-08-04 07:06:03 +02:00
|
|
|
<%= yield %>
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|