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.

31 lines
915 B

9 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
9 months ago
3 months ago
3 months ago
3 months ago
9 months ago
3 months ago
4 months ago
3 months ago
9 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. <%= tag :meta, name: :viewport, content: 'width=device-width,initial-scale=1' %>
  13. <% if Rails.env.development? %>
  14. <%= tag :meta, name: 'turbo-prefetch', content: false %>
  15. <%= tag :meta, name: 'stimulus-debug', content: LiveConstants.stimulus_debug %>
  16. <% end%>
  17. <!-- LINK-->
  18. <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
  19. <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
  20. <%= javascript_importmap_tags %>
  21. </head>
  22. <body>
  23. <%=render 'layouts/navbar' %>
  24. <%=render 'layouts/notification' %>
  25. <main class=" flex flex-col bg-slate-300 p-8 ">
  26. <%= yield %>
  27. </main>
  28. </body>
  29. </html>