mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
Closes https://github.com/kestra-io/kestra/issues/13599. Co-authored-by: Miloš Paunović <paun992@hotmail.com>
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
<!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="/favicon.ico">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/favicon-192x192.png">
|
|
<meta name="msapplication-TileColor" content="#192A4E">
|
|
<meta name="theme-color" content="#192A4E">
|
|
<link rel="stylesheet" href="/loader.css" />
|
|
<meta name="html-head" content="replace">
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<meta name="referrer" content="no-referrer-when-downgrade">
|
|
<script>
|
|
window.KESTRA_GOOGLE_ANALYTICS = null;
|
|
window.KESTRA_UI_PATH = "./";
|
|
window.KESTRA_BASE_PATH = function () {
|
|
const split = window.KESTRA_UI_PATH.split('/');
|
|
split.pop();
|
|
split.pop();
|
|
return split.join('/') + "/";
|
|
}();
|
|
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>
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|