-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 918 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%- title %></title>
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="alternate" hreflang="x-default" href="/" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#6c36dd" />
<meta name="theme-color" content="#6c36dd" />
</head>
<body>
<div
id="loading-screen"
role="status"
aria-busy="true"
aria-live="polite"
aria-label="Loading…"
>
<div class="spinner" aria-hidden="true">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
<div id="root"></div>
</body>
</html>