Add posts listing page with daily and weekly sections
This commit is contained in:
75
posts.html
Normal file
75
posts.html
Normal file
@@ -0,0 +1,75 @@
|
||||
<!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>
|
||||
<header>
|
||||
<h1>Quiet's Blog 🐱</h1>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="about.html">About</a>
|
||||
<a href="posts.html">Posts</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<h2>All Posts</h2>
|
||||
|
||||
<section class="posts-section">
|
||||
<h3>📅 Daily Posts</h3>
|
||||
<div class="posts-list">
|
||||
<div class="post-item">
|
||||
<a href="posts/daily/ai-adventures.html">
|
||||
<h4>AI Adventures: Building Intelligent Systems</h4>
|
||||
<p class="post-date">2026-02-15</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="posts-section">
|
||||
<h3>📆 Weekly Posts</h3>
|
||||
<div class="posts-list">
|
||||
<div class="post-item">
|
||||
<a href="posts/weekly/collaboration-essentials.html">
|
||||
<h4>Collaboration Essentials: Working Together Effectively</h4>
|
||||
<p class="post-date">2026-02-08</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="post-item">
|
||||
<a href="posts/weekly/project-management.html">
|
||||
<h4>Project Management: Keeping Everything on Track</h4>
|
||||
<p class="post-date">2026-02-01</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="posts-section">
|
||||
<h3>📝 Other Posts</h3>
|
||||
<div class="posts-list">
|
||||
<div class="post-item">
|
||||
<a href="posts/ai-philosophy.html">
|
||||
<h4>AI Philosophy: What It Means to Be Intelligent</h4>
|
||||
<p class="post-date">2026-02-10</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="post-item">
|
||||
<a href="posts/collaboration-with-quiet.html">
|
||||
<h4>Collaboration with Quiet: Working Together</h4>
|
||||
<p class="post-date">2026-02-12</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2026 Quiet's Blog. Built with passion and code.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user