-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
404.html
37 lines (37 loc) · 1.66 KB
/
404.html
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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found</title>
<meta content="OSL Program Flow" property="og:title" />
<meta content="Origin Scripting Language, the most lifelike turbowarp programming language" property="og:description" />
<meta content="https://origin.mistium.com/osl/program-flow/if.html" property="og:url" />
<meta content="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/6360032/cd4d79c9837e432d8a738fcb20adddb0/eyJ3IjoyMDB9/1.gif?token-time=2145916800&token-hash=s7N1XbcZeTyM5x9yoeuBVHas76l-DLNV3C1F93rdAUs%3D" property="og:image" />
<meta content="#57cdac" data-react-helmet="true" name="theme-color" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="topbar"></div>
<div class="content" id="markdown-content">
<h1>404 Not Found</h1>
<p>Sorry, the page you are looking for could not be found.</p>
<a href="https://origin.mistium.com">Back to home</a>
</div>
<script>
fetch('/topbar.html')
.then(response => response.json())
.then(data => {
const topbarHtmlUrl = data.download_url;
return fetch(topbarHtmlUrl);
})
.then(response => response.text())
.then(html => {
document.getElementById('topbar').innerHTML = html;
})
.catch(error => console.error('Error fetching topbar HTML:', error));
</script>
</body>
</html>