feature: Wire up blog section

This commit is contained in:
Keith Solomon
2025-04-19 15:48:56 -05:00
parent 472aad6bc6
commit 463250eb7b
9 changed files with 379 additions and 120 deletions

View File

@@ -1,35 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/about/">About</a></li>
<li><a href="/">Index</a></li>
</ul>
</nav>
</header>
<main>
<h1>About
<!DOCTYPE html>
<html lang="en">
<p>
Experimenting with Go. Seems pretty cool so far!
</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
<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>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>

50
public/blog/index.html Normal file
View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Go SSG - Blog</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>
<section>
<h2>Blog Posts</h2>
<ul>
<li>
<a href="/blog/my-first-blog-post/">Go SSG - My First Blog Post</a>
<small>2025-04-19</small><br>
A short summary of the post.
</li>
</ul>
</section>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>

View File

@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Go SSG - My First Blog Post</title>
<meta name="description" content="A short summary of the post.">
</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><em>Tap Tap Tap</em> Is this thing on?</h1>
<p>This is my first blog post!</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>

View File

@@ -1,35 +1,40 @@
<!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
<!DOCTYPE html>
<html lang="en">
<p>
This is your first static site built with Go!
</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
<head>
<meta charset="UTF-8">
<title>Go SSG - Home</title>
<meta name="description" content="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>Welcome</h1>
<p>This is your first static site built with Go!</p>
</main>
<footer>
<p>&copy; 2025 Keith Solomon</p>
</footer>
</body>
</html>