35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= I18n.locale %>">
|
|
<head>
|
|
<title><%= content_for?(:title) ? yield(:title) : "Terminator" %></title>
|
|
<link rel="manifest" crossorigin="use-credentials" href="/manifest.json" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
<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>
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
|
|
|
|
|
<%= javascript_importmap_tags %>
|
|
<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>
|
|
</head>
|
|
|
|
<body>
|
|
<% if logged_in? %>
|
|
<div class="fixed top-4 right-4 text-sm text-gray-600 bg-white px-3 py-1 rounded-md shadow-sm border">
|
|
<span class="lowercase"><%= current_user.username %></span>
|
|
<span class="mx-2">|</span>
|
|
<%= link_to t('sessions.logout_button'), logout_path, method: :delete,
|
|
class: "text-blue-600 hover:text-blue-800" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<main class="container mx-auto mt-28 px-5 flex">
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|