✨feature: Set up templated views and blog support
This commit is contained in:
@@ -1,50 +1,44 @@
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Go SSG - Blog</title>
|
||||
|
||||
<title>Blog Index</title>
|
||||
</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>
|
||||
|
||||
|
||||
<h1>Blog Index</h1>
|
||||
<ul>
|
||||
|
||||
<li><a href="/blog/another-blog-post/">Go SSG - Another Blog Post</a><br>A longer summary of the post. Lorem ipsum dolor set amit.</li>
|
||||
|
||||
<li><a href="/blog/my-first-blog-post/">Go SSG - My First Blog Post</a><br>A short summary of the post.</li>
|
||||
|
||||
</ul>
|
||||
</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>© 2025 Keith Solomon - Go SSG</p>
|
||||
</footer>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 Keith Solomon</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user