Files
firepool/templates/404.html
Nathan Woodburn 17d2f20b61
All checks were successful
Build Docker / BuildImage (push) Successful in 1m0s
Check Code Quality / RuffCheck (push) Successful in 1m8s
feat: Add setup page and OG
2026-04-04 19:30:14 +11:00

32 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firepool | Page Not Found</title>
<meta name="description" content="The page you requested could not be found on Firepool.">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Firepool">
<meta property="og:title" content="Firepool | Page Not Found">
<meta property="og:description" content="The page you requested could not be found on Firepool.">
<meta property="og:url" content="{{ request.url }}">
<meta property="og:image" content="https://explorer.hns.au/assets/img/favicon.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Firepool | Page Not Found">
<meta name="twitter:description" content="The page you requested could not be found on Firepool.">
<meta name="twitter:image" content="https://explorer.hns.au/assets/img/favicon.png">
<link rel="icon" href="https://explorer.hns.au/assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/404.css">
</head>
<body>
<div class="spacer"></div>
<div class="centre">
<h1>404 | Page not found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
<p><a href="/">Go back to the homepage</a></p>
</div>
</body>
</html>