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.

28 lines
698 B

9 months ago
8 months ago
9 months ago
9 months ago
8 months ago
4 months ago
8 months ago
9 months ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%=Rails.configuration.application_title%></title>
  5. <!--META -->
  6. <%= csrf_meta_tags %>
  7. <%= csp_meta_tag %>
  8. <meta name="viewport" content="width=device-width,initial-scale=1">
  9. <% if Rails.env.development? %>
  10. <meta name="turbo-prefetch" content="false">
  11. <% end%>
  12. <!-- LINK-->
  13. <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
  14. <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
  15. <%= javascript_importmap_tags %>
  16. </head>
  17. <body>
  18. <%=render 'layouts/notification' %>
  19. <main class="m-8 flex flex-col">
  20. <%= yield %>
  21. </main>
  22. </body>
  23. </html>