-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
index.html
43 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kestra</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="icon" type="image/png" sizes="192x192" href="<%= BASE_URL %>favicon-192x192.png">
<meta name="msapplication-TileColor" content="#192A4E">
<meta name="theme-color" content="#192A4E">
<link rel="stylesheet" href="<%= BASE_URL %>loader.css" />
<meta name="html-head" content="replace">
<script>
const KESTRA_GOOGLE_ANALYTICS = null;
const KESTRA_UI_PATH = "<%= BASE_URL %>";
const KESTRA_BASE_PATH = function () {
const split = KESTRA_UI_PATH.split('/');
split.pop();
split.pop();
return split.join('/') + "/";
}();
const KESTRA_ASSETS = '<% print(JSON.stringify(webpack.assetsByChunkName)); %>'
if (localStorage.getItem("theme")) {
document.getElementsByTagName("html")[0].classList.add(localStorage.getItem("theme"));
}
</script>
</head>
<body>
<noscript>
<strong>We're sorry but Kestra doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<div id="app-container">
<div id="app"></div>
</div>
<!-- built files will be auto injected -->
</body>
</html>