Files
woodburn/templates/404.html
Nathan Woodburn d2db66d527
All checks were successful
Check Code Quality / RuffCheck (push) Successful in 55s
Build Docker / BuildImage (push) Successful in 57s
feat: Cleanup code
2026-02-11 17:56:51 +11:00

21 lines
556 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Woodburn/</title>
<link rel="icon" href="/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>