pbio-site/templates/404.html
2025-04-19 12:17:00 +00:00

25 lines
No EOL
956 B
HTML

<!-- 404.html -->
<!-- Copyright (c) 2025 snfsx.xyz -->
<!-- Licensed under the MIT License. See https://opensource.org/licenses/MIT -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<!-- Link to Google Fonts for 'Inter' -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>404</h1>
<p>The page you are looking for could not be found.</p>
<a href="{{ url_for('index') }}">Return to Homepage</a>
</div>
</body>
</html>