Files
go-SSG/public/index.html
2025-04-20 15:39:22 -05:00

44 lines
550 B
HTML

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