-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 775 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="browermode" content="application">
<meta name="screen-orientation" content="landscape">
<meta name="x5-orientation" content="landscape">
<meta name="x5-page-mode" content="app">
<title>ExCaller</title>
<script type="application/json" id="ex-caller"></script>
<style>
#app[data-loading] {
background: center / 72px auto no-repeat url("/logo.webp");
}
</style>
</head>
<body>
<div id="app" data-loading>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>