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.8 KiB
67 lines
1.8 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="/">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Squidex Headless CMS</title>
|
|
<style>
|
|
#outdated {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<noscript>
|
|
<style>
|
|
.loading {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</noscript>
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/outdated-browser/1.1.3/outdatedbrowser.min.css">
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/outdated-browser/1.1.3/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: 'borderImage', languagePath: '' });
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<sqx-app>
|
|
<div class="loading">
|
|
<img src="./images/loader.gif" />
|
|
|
|
<div>Loading Squidex</div>
|
|
</div>
|
|
</sqx-app>
|
|
|
|
<div id="outdated">
|
|
<h6>Your browser is out-of-date!</h6>
|
|
|
|
<p>
|
|
Update your browser to view this website correctly. <a id="btnUpdateBrowser" href="http://outdatedbrowser.com/">Update my browser now </a>
|
|
</p>
|
|
|
|
<p class="last">
|
|
<a href="#" id="btnCloseUpdateBrowser" title="Close">×</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|