-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs-dos-test.html
More file actions
36 lines (35 loc) · 1.02 KB
/
Copy pathjs-dos-test.html
File metadata and controls
36 lines (35 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wolfenstein 3D Legacy Demo Redirect</title>
<meta http-equiv="refresh" content="0; url=./demo/build/latest/">
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
background: #111;
color: #f5f5f5;
font-family: Arial, sans-serif;
text-align: center;
}
a {
color: #8fd3ff;
}
</style>
</head>
<body>
<main>
<h1>This legacy demo page has moved.</h1>
<p>Redirecting to the canonical hosted build at <a href="./demo/build/latest/">demo/build/latest</a>.</p>
</main>
<script>
window.location.replace(new URL('./demo/build/latest/', window.location.href).href);
</script>
</body>
</html>