2024-08-04 07:06:03 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Terminator</title>
|
|
|
|
|
<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" %>
|
2024-08-04 07:06:03 +02:00
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
2024-08-11 14:18:36 +02:00
|
|
|
|
2024-08-04 07:06:03 +02:00
|
|
|
<%= javascript_importmap_tags %>
|
|
|
|
|
</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>
|