Files
go-SSG/public/about.html

36 lines
508 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/index.html">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>
</html>