Files
go-SSG/public/index.html
2025-04-19 14:55:03 -05:00

36 lines
492 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/about/">About</a></li>
<li><a href="/">Index</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome
</h1>
<p>
This is your first static site built with Go!
</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>