-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
62 lines (61 loc) · 1.79 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1,
shrink-to-fit=no"
/>
<!-- For generating updated icons see:
https://dev.to/masakudamatsu/favicon-nightmare-how-to-maintain-sanity-3al7
If that link is broken, icons can be generated here:
https://realfavicongenerator.net/
Note that this generator outputs more than is typically required
-->
<link rel="icon" href="/favicon.ico?v=1" sizes="any" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=1" />
<link rel="manifest" href="/site.webmanifest?v=1" />
<meta name="theme-color" content="#232643" />
<script type="module" src="/src/main.js"></script>
<title>Traction</title>
<style>
/* Inline style for loading pane */
#app-loading-pane {
width: 20%;
margin: 10em auto;
text-align: center;
font-family:
'Helvetica Neue',
Arial,
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
'Noto Sans',
sans-serif;
color: #718096;
}
#app-loading-pane-logo {
width: 100%;
}
</style>
</head>
<body>
<noscript>
<strong
>We're sorry but traction-ui doesn't work properly without JavaScript enabled. Please enable
it to continue.</strong
>
</noscript>
<div id="app">
<div id="app-loading-pane">
<img id="app-loading-pane-logo" src="traction-logo.svg" />
<h1 id="app-loading-pane-loading">Loading...</h1>
</div>
</div>
<!-- built files will be auto injected -->
</body>
</html>