31 lines
833 B
HTML
31 lines
833 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- This doesnt work inside react helmetv-->
|
|
<meta name="pinterest" content="nopin" />
|
|
</head>
|
|
|
|
<body
|
|
ondragstart="return false;"
|
|
ondrop="return false;"
|
|
oncontextmenu="return false"
|
|
>
|
|
<!--The react app is rendered here-->
|
|
<div id="app"></div>
|
|
|
|
<!--The splash screen structure-->
|
|
<div class="Splash">
|
|
<!--Loading animation-->
|
|
<div class="loading">
|
|
<div class="lds-ripple">
|
|
<div></div>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!--In case someone tries to laod this with js disabled-->
|
|
<noscript> JavaScript must be enabled to run this app. </noscript>
|
|
</div>
|
|
</body>
|
|
</html>
|