12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Zammad - Mobile-View</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <%= csrf_meta_tags %>
- <%= csp_meta_tag %>
- <%= vite_client_tag %>
- <%= vite_typescript_tag 'mobile' %>
- <!--
- If using a TypeScript entrypoint file:
- vite_typescript_tag 'application'
- If using a .jsx or .tsx entrypoint, add the extension:
- vite_javascript_tag 'application.jsx'
- Visit the guide for more information: https://vite-ruby.netlify.app/guide/rails
- -->
- </head>
- <body>
- <%= yield %>
- </body>
- </html>
|