- Updated navigation links across multiple blog pages to replace "Index" with "Home" and added "Contact" link. - Created a new contact page with a form for user inquiries. - Added a new contact template to render the contact page content. - Updated blog index page to enhance structure and styling. - Added a contact markdown file for content management.
76 lines
1.6 KiB
HTML
76 lines
1.6 KiB
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Go SSG - My First Blog Post</title>
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header id="site_head">
|
|
<h1 class="text-white text-40px hover:text-primary-200"><a href="/">Go SSG</a></h1>
|
|
|
|
<nav>
|
|
<ul class="list-none">
|
|
|
|
<li class="list-none"><a class="text-white hover:text-primary-200" href="/">Home</a></li>
|
|
|
|
<li class="list-none"><a class="text-white hover:text-primary-200" href="/blog/">Blog</a></li>
|
|
|
|
<li class="list-none"><a class="text-white hover:text-primary-200" href="/about/">About</a></li>
|
|
|
|
<li class="list-none"><a class="text-white hover:text-primary-200" href="/contact/">Contact</a></li>
|
|
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
|
|
<main>
|
|
<article>
|
|
<h1>Go SSG - My First Blog Post</h1>
|
|
<p><small>2025-04-19</small></p>
|
|
|
|
|
|
<p>
|
|
Categories:
|
|
|
|
|
|
<a href="/blog/category/progrmming/">progrmming</a>
|
|
|
|
,
|
|
<a href="/blog/category/go/">go</a>
|
|
|
|
</p>
|
|
|
|
|
|
<h2><em>Tap Tap Tap</em> Is this thing on?</h2>
|
|
|
|
<p class="text-primary">This is my first Go SSG blog post.</p>
|
|
|
|
<p>This project is a simple static site generator written in Go. It is designed to be easy to use and extend, allowing you to create a static website quickly and efficiently.</p>
|
|
|
|
<p>It supports features like:</p>
|
|
|
|
<ul>
|
|
<li>Markdown content</li>
|
|
<li>Customizable templates</li>
|
|
<li>Simple configuration</li>
|
|
</ul>
|
|
|
|
</article>
|
|
</main>
|
|
|
|
|
|
<footer id="site_foot">
|
|
<p class="p-0 py-4 m-0 leading-none">© 2025 Keith Solomon - Go SSG</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|