mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<base href="/" />
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
|
|
<title>Squidex Headless CMS</title>
|
|
|
|
<style>
|
|
#outdated {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
<noscript>
|
|
<style>
|
|
.loading {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</noscript>
|
|
|
|
<link href="./scripts/outdatedbrowser/outdatedbrowser.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
<script src="./scripts/outdatedbrowser/outdatedbrowser.min.js"></script>
|
|
|
|
<script>
|
|
function addLoadEvent(callback) {
|
|
var oldOnload = window.onload;
|
|
|
|
if (typeof window.onload != "function") {
|
|
window.onload = callback;
|
|
} else {
|
|
window.onload = function () {
|
|
if (oldOnload) {
|
|
oldOnload();
|
|
}
|
|
callback();
|
|
};
|
|
}
|
|
}
|
|
|
|
addLoadEvent(function () {
|
|
outdatedBrowser({
|
|
lowerThan: "object-fit",
|
|
languagePath: "./scripts/outdatedbrowser/lang/en.html",
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<sqx-app>
|
|
<div class="loading">
|
|
<img src="./images/loader.svg" />
|
|
<div>Loading Squidex</div>
|
|
</div>
|
|
</sqx-app>
|
|
<div id="outdated"></div>
|
|
|
|
<script>
|
|
/* INJECT OPTIONS */
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|