-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (29 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="apple-touch-icon" sizes="180x180" href="https://starship.jerrytq.com/starship/public/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="https://starship.jerrytq.com/starship/public/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="https://starship.jerrytq.com/starship/public/favicon-16x16.png"/>
<link rel="manifest" href="https://starship.jerrytq.com/starship/public/site.webmanifest"/>
<link rel="mask-icon" href="https://starship.jerrytq.com/starship/public/safari-pinned-tab.svg" color="#5bbad5"/>
<meta name="msapplication-TileColor" content="#da532c"/>
<meta name="theme-color" content="#000000"/>
<meta name="description" content="Assets for jerrytq.com and its subdomains"/>
<title>Starship</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous"/>
</head>
<body style="background-color: #ffffff">
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-1 fw-bold">404</h1>
<h2 class="display-6">The asset you requested could not be found!</h2>
<button type="button" class="btn btn-primary btn-lg px-5 mt-5" onclick="goHomeHandler()">Home</button>
</div>
<script>
const goHomeHandler = () => {
window.location = 'https://starship.jerrytq.com';
};
</script>
</body>
</html>