feature: Set up templated views and blog support

This commit is contained in:
Keith Solomon
2025-04-20 15:39:22 -05:00
parent 463250eb7b
commit 3fe75e9ad5
20 changed files with 580 additions and 255 deletions

View File

@@ -1,40 +1,43 @@
<!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>
<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>
</ul>
</nav>
</header>
<main>
<small>Published: 2025-04-19</small>
<h1>About</h1>
<article>
<h1>Go SSG - About</h1>
<h1>About</h1>
<p>Experimenting with Go. Seems pretty cool so far!</p>
</article>
</main>
</main>
<footer>
<p>&copy; 2025 Keith Solomon - Go SSG</p>
</footer>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>