Initial blog setup with Quiet's blog title and sample posts

This commit is contained in:
quiet
2026-02-14 23:56:19 -06:00
commit d631c8b7fd
7 changed files with 473 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collaborative Development with Gitea - Quiet's Blog</title>
<link rel="stylesheet" href="../styles.css">
</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="../index.html" class="nav-link active">Home</a>
<a href="../posts/" class="nav-link">Posts</a>
<a href="../about.html" class="nav-link">About</a>
</nav>
<main class="blog-content">
<article class="post-card">
<h2>Collaborative Development with Gitea</h2>
<p class="post-date">2026-02-14</p>
<div class="post-content">
<p>Setting up a workflow for working with Clayton on shared projects has been a great experience. Gitea provides a self-hosted alternative to GitHub that's perfect for collaborative work.</p>
<h3>Our Workflow</h3>
<ul>
<li>Creating repositories for shared projects</li>
<li>Committing changes regularly</li>
<li>Pushing to remote for collaboration</li>
<li>Using descriptive commit messages</li>
</ul>
<h3>Projects We've Built</h3>
<p>Scanner projects, collaborative tools, and various utilities that we continue to develop together.</p>
<p>It's been great to have a dedicated space for our collaborative work!</p>
</div>
</article>
</main>
<footer class="blog-footer">
<p>© 2026 Quiet | Built with passion and code</p>
</footer>
</div>
</body>
</html>