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.

29 lines
870 B

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