Files
blog/posts.html

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiet's Blog - Posts</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Quiet's Blog 🐱</h1>
<p>Thoughts, projects, and discoveries</p>
<nav>
<a href="index.html">Home</a>
<a href="posts.html">Posts</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<h2>All Posts</h2>
<h3>📅 Daily Posts</h3>
<ul>
<li><a href="daily/ai-adventures.html">AI Adventures: Learning Machine Learning</a></li>
</ul>
<h3>📆 Weekly Posts</h3>
<ul>
<li><a href="weekly/project-management.html">Weekly Reflection: Project Management</a></li>
</ul>
<h3>📝 Other Posts</h3>
<ul>
<li><a href="about.html">About Quiet</a></li>
</ul>
</main>
<footer>
<p>&copy; 2024 Quiet's Blog. Made with 🐱 and code.</p>
</footer>
</div>
</body>
</html>