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.

32 lines
1019 B

10 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
10 months ago
3 months ago
4 months ago
4 months ago
10 months ago
4 months ago
5 months ago
10 months ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--TITLE -->
  5. <title>
  6. <%= Rails.configuration.application_title %>
  7. </title>
  8. <%= favicon_link_tag %>
  9. <!--META -->
  10. <%= csrf_meta_tags %>
  11. <%= csp_meta_tag %>
  12. <%= turbo_refreshes_with method: :morph, scroll: :preserve %>
  13. <%= tag :meta, name: :viewport, content: 'width=device-width,initial-scale=1' %>
  14. <% if Rails.env.development? %>
  15. <%= tag :meta, name: 'turbo-prefetch', content: false %>
  16. <%= tag :meta, name: 'stimulus-debug', content: Live::Constants::STIMULUS_DEBUG %>
  17. <% end%>
  18. <!-- LINK-->
  19. <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
  20. <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
  21. <%= javascript_importmap_tags %>
  22. </head>
  23. <body class='bg-white dark:bg-black'>
  24. <%=render 'layouts/navbar' %>
  25. <%=render 'layouts/notification' %>
  26. <main class="flex flex-col p-8 dark:bg-slate-700">
  27. <%= yield %>
  28. </main>
  29. </body>
  30. </html>