mobile.html.erb 661 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Zammad - Mobile-View</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <%= csrf_meta_tags %>
  8. <%= csp_meta_tag %>
  9. <%= vite_client_tag %>
  10. <%= vite_typescript_tag 'mobile' %>
  11. <!--
  12. If using a TypeScript entrypoint file:
  13. vite_typescript_tag 'application'
  14. If using a .jsx or .tsx entrypoint, add the extension:
  15. vite_javascript_tag 'application.jsx'
  16. Visit the guide for more information: https://vite-ruby.netlify.app/guide/rails
  17. -->
  18. </head>
  19. <body>
  20. <%= yield %>
  21. </body>
  22. </html>