Bootstrapped the site from scratch following a data loss event. Set up a simple HTML/CSS page served from nginx. Added a navbar with the index page anchored in the top-left, a blog page link, and a link to the Forgejo instance. Added contact info and a genealogy blurb to the index page. Added an example resume page linked from the navbar.
27 lines
898 B
HTML
27 lines
898 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</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<!--#include virtual="/includes/navbar.html" -->
|
|
|
|
<main class="container">
|
|
<section class="hero">
|
|
<h1>404 - Page Not Found</h1>
|
|
<p>The page you're looking for doesn't exist.</p>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>What happened?</h2>
|
|
<p>The page you requested could not be found. It may have been moved, deleted, or never existed.</p>
|
|
<p><a href="/" style="color: #3498db; text-decoration: none; font-weight: bold;">← Go back to homepage</a></p>
|
|
</section>
|
|
</main>
|
|
|
|
<!--#include virtual="/includes/footer.html" -->
|
|
</body>
|
|
</html>
|