forked from creatorsim/creator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (134 loc) · 4.23 KB
/
index.html
File metadata and controls
145 lines (134 loc) · 4.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!--
Copyright 2018-2026 CREATOR Team.
This file is part of CREATOR.
CREATOR is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CREATOR is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with CREATOR. If not, see <http://www.gnu.org/licenses/>.
-->
<!doctype html>
<html lang="en" data-bs-theme="light">
<!-- Head -->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X30SC9SWE2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-X30SC9SWE2');
</script>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover, user-scalable=no"
/>
<style>
/* Prevent scrolling on the entire page */
html, body {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
}
</style>
<title>CREATOR</title>
<!-- Favicon -->
<!-- generated from https://realfavicongenerator.net/ -->
<link
rel="icon"
type="image/png"
href="favicons/favicon-96x96.png"
sizes="96x96"
/>
<link rel="icon" type="image/svg+xml" href="favicons/favicon.svg" />
<link rel="shortcut icon" href="favicons/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicons/apple-touch-icon.png"
/>
<meta name="apple-mobile-web-app-title" content="CREATOR" />
<link rel="manifest" href="favicons/site.webmanifest" />
</head>
<body>
<noscript>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-size: 15px;
}
.noscript-container {
background: #ffffff;
border: 1px solid #dee2e6;
border-radius: 0.375rem;
padding: 3rem 2.5rem;
max-width: 600px;
margin: 20px;
text-align: center;
}
.noscript-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background-color: #00bcfe;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
}
.noscript-title {
font-size: 1.75rem;
font-weight: 500;
color: #212529;
margin: 0 0 1rem 0;
}
.noscript-message {
font-size: 1rem;
color: #6c757d;
line-height: 1.5;
margin: 0 0 1.5rem 0;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #212529;
}
.noscript-container {
background-color: #212529;
border-color: rgba(255, 255, 255, 0.12);
}
.noscript-title {
color: rgba(255, 255, 255, 0.87);
}
.noscript-message {
color: rgba(255, 255, 255, 0.6);
}
}
</style>
<div class="noscript-container">
<div class="noscript-icon">⚡</div>
<h1 class="noscript-title">JavaScript Required</h1>
<p class="noscript-message">
CREATOR is a modern web application that requires JavaScript and WebAssembly to function properly.
Please enable JavaScript in your browser settings and reload the page.
</p>
</noscript>
<div id="app"></div>
<script type="module" src="/src/web/main.js"></script>
</body>
</html>