You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
763 B

11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%=Rails.configuration.application_title%></title>
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <%= csrf_meta_tags %>
  7. <%= csp_meta_tag %>
  8. <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
  9. <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
  10. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css">
  11. <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
  12. <%= javascript_importmap_tags %>
  13. </head>
  14. <body>
  15. <%=render '/layouts/notification' %>
  16. <main class="m-8 flex flex-col">
  17. <%= yield %>
  18. </main>
  19. </body>
  20. </html>