2019-03-06 09:25:58 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2019-07-28 11:16:49 +02:00
|
|
|
<head>
|
|
|
|
<!-- This doesnt work inside react helmetv-->
|
|
|
|
<meta name="pinterest" content="nopin" />
|
|
|
|
</head>
|
2019-07-11 19:51:14 +02:00
|
|
|
|
|
|
|
<body
|
|
|
|
ondragstart="return false;"
|
|
|
|
ondrop="return false;"
|
|
|
|
oncontextmenu="return false"
|
|
|
|
>
|
2019-08-03 23:55:22 +02:00
|
|
|
<!--The react app is rendered here-->
|
2019-07-15 13:45:52 +02:00
|
|
|
<div id="app"></div>
|
2019-08-03 23:55:22 +02:00
|
|
|
|
|
|
|
<!--The splash screen structure-->
|
2019-07-23 21:53:59 +02:00
|
|
|
<div class="Splash">
|
2019-08-03 23:55:22 +02:00
|
|
|
<!--Loading animation-->
|
2019-07-23 21:53:59 +02:00
|
|
|
<div class="loading">
|
|
|
|
<div class="lds-ripple">
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-08-03 23:55:22 +02:00
|
|
|
|
|
|
|
<!--In case someone tries to laod this with js disabled-->
|
2019-07-23 21:53:59 +02:00
|
|
|
<noscript> JavaScript must be enabled to run this app. </noscript>
|
|
|
|
</div>
|
2019-07-11 19:51:14 +02:00
|
|
|
</body>
|
|
|
|
</html>
|