2022-09-13 13:14:49 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-07-17 14:37:39 +00:00
|
|
|
<meta charset="utf-8">
|
2022-09-13 13:14:49 +00:00
|
|
|
<title>Error 503</title>
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
font: 12px/20px Verdana, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Error 503</h1>
|
|
|
|
<p>The site is currently unavailable due to ongoing updates. It should be back shortly!</p>
|
|
|
|
<p>The page will refresh when the site becomes available again.</p>
|
|
|
|
<p><a href="javascript:location.reload(true)">Retry</a></p>
|
|
|
|
<script type="text/javascript">
|
|
|
|
setInterval(function() {
|
|
|
|
var xhr = new XMLHttpRequest;
|
|
|
|
xhr.onreadystatechange = function() {
|
|
|
|
if(xhr.readyState === 4 && xhr.status !== 503)
|
|
|
|
document.links[0].click();
|
|
|
|
};
|
|
|
|
xhr.open('HEAD', location.pathname + '?_check=' + Date.now().toString());
|
|
|
|
xhr.send();
|
|
|
|
}, 10000);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|