41 lines
632 B
HTML
41 lines
632 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Go SSG - About</title>
|
|
<meta name="description" content="More About My Go SSG Site.">
|
|
</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>
|
|
<small>Published: 2025-04-19</small>
|
|
<h1>About</h1>
|
|
|
|
<p>Experimenting with Go. Seems pretty cool so far!</p>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 Keith Solomon</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|