23 lines
924 B
HTML
23 lines
924 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>404 - Page Not Found | Goa-GEL Documentation</title>
|
||
|
|
<link rel="stylesheet" href="/css/styles.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container" style="text-align: center; padding: 100px 20px;">
|
||
|
|
<h1 style="font-size: 6rem; margin-bottom: 20px;">404</h1>
|
||
|
|
<h2 style="margin-bottom: 20px;">Page Not Found</h2>
|
||
|
|
<p style="color: #666; margin-bottom: 40px;">
|
||
|
|
The page you're looking for doesn't exist or has been moved.
|
||
|
|
</p>
|
||
|
|
<div style="display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;">
|
||
|
|
<a href="/" class="btn btn-primary">Go to Homepage</a>
|
||
|
|
<a href="/viewer.html?doc=DOCUMENTATION_INDEX" class="btn btn-secondary">View Documentation</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|