2022-11-15 10:02:30 +01:00
|
|
|
!!! 5
|
|
|
|
%html{ lang: html_lang, class: yield(:root_class) }
|
|
|
|
%head
|
|
|
|
%meta{ "http-equiv": "Content-Type", content: "text/html; charset=UTF-8" }
|
|
|
|
%meta{ "http-equiv": "X-UA-Compatible", content: "IE=edge" }
|
|
|
|
%meta{ name: "viewport", content: "width=device-width, initial-scale=1" }
|
2023-09-11 17:41:54 +02:00
|
|
|
%meta{ name: "application-name", content: APPLICATION_NAME }
|
|
|
|
%meta{ name: "apple-mobile-web-app-title", content: APPLICATION_NAME }
|
2022-11-15 10:02:30 +01:00
|
|
|
= csrf_meta_tags
|
|
|
|
|
|
|
|
%title
|
|
|
|
= content_for?(:title) ? "#{yield(:title)} · #{APPLICATION_NAME}" : APPLICATION_NAME
|
|
|
|
|
2023-09-11 17:41:54 +02:00
|
|
|
= render partial: "layouts/favicons"
|
2022-11-15 10:02:30 +01:00
|
|
|
|
2023-03-18 12:57:44 +01:00
|
|
|
= vite_client_tag
|
|
|
|
= vite_typescript_tag 'playground'
|
2022-11-17 15:50:05 +01:00
|
|
|
|
2022-11-15 10:02:30 +01:00
|
|
|
= Gon::Base.render_data(camel_case: true, init: true, nonce: request.content_security_policy_nonce)
|
|
|
|
|
|
|
|
:css
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2023-03-18 12:57:44 +01:00
|
|
|
#playground {
|
2022-11-15 10:02:30 +01:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
%body
|
2023-03-18 12:57:44 +01:00
|
|
|
#playground
|
2022-11-15 10:02:30 +01:00
|
|
|
Loading...
|