-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
48 lines (46 loc) · 995 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html
lang="en"
class="azion azion-light"
>
<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"
/>
<title>Azion Console</title>
<!-- Font preloads -->
<link
rel="preload"
href="https://fonts.azion.com/roboto/roboto-regular.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="https://fonts.azion.com/roboto/roboto-medium.woff2"
as="font"
type="font/woff2"
crossorigin
/>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.js"
></script>
<noscript>
<strong
>We're sorry but Azion Console doesn't work properly without JavaScript enabled. Please
enable it to continue.</strong
>
</noscript>
</body>
</html>