feature: Make "pretty" URLs

This commit is contained in:
Keith Solomon
2025-04-19 14:55:03 -05:00
parent b336148b07
commit 71af009bbf
3 changed files with 55 additions and 43 deletions

35
public/about/index.html Normal file
View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/about/">About</a></li>
<li><a href="/">Index</a></li>
</ul>
</nav>
</header>
<main>
<h1>About
</h1>
<p>
Experimenting with Go. Seems pretty cool so far!
</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>