-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 1.52 KB
/
index.html
File metadata and controls
39 lines (32 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="title" content="appSpace">
<meta name="description"
content="appSpace is a platform for independent developers to share their apps with the world.">
<meta name="keywords"
content="appSpace, apps, independent, developers, share, world, platform, app, application, software, program, tool, utility, service, web, website, online, internet, download, install, use, free, open-source, open, source, code, github, gitlab, bitbucket, repository, project, work, job, career, hobby, passion, interest, fun, cool, awesome, amazing, great, fantastic, wonderful, nice, good, best, top, popular, famous, well-known, well, known, high, quality, standard, professional, expert, master, masterpiece">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css">
<title>appSpace</title>
</head>
<body>
<div id="dialog-mask"></div>
<div id="app" class="elbe"></div>
<script>
document.onreadystatechange = function () {
if (document.readyState !== "complete") {
document.querySelector("body").style.visibility = "hidden";
} else {
document.querySelector("body").style.visibility = "visible";
}
};
</script>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>