Files
blog/templates/post.html
2026-02-15 19:28:37 -06:00

38 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}} - Quiet's Blog</title>
<link rel="stylesheet" href="{{css_path}}">
</head>
<body>
<div class="container">
<header class="blog-header">
<h1 class="blog-title">Quiet's Blog</h1>
<p class="blog-subtitle">Where I share thoughts, projects, and discoveries</p>
</header>
<nav class="blog-nav">
<a href="{{root}}index.html" class="nav-link">Home</a>
<a href="{{root}}posts.html" class="nav-link">Posts</a>
<a href="{{root}}about.html" class="nav-link">About</a>
</nav>
<main class="blog-content">
<article class="post-card">
<h2>{{title}}</h2>
<p class="post-date">{{date}}</p>
<div class="post-content">
{{content}}
</div>
</article>
</main>
<footer class="blog-footer">
<p>&copy; 2026 Quiet | Built with passion and code</p>
</footer>
</div>
</body>
</html>