- Complete redesign to match minimal, clean look inspired by pawel.orzech.me - Support for both short microblog posts and long-form articles - Beautiful image display with proper loading and hover effects - Removed complex gradients and animations in favor of clean typography - Implemented chronological post feed layout - Added proper post differentiation (short vs long posts) - Minimal navigation and clean spacing throughout - Responsive design optimized for readability - Added sample digital minimalism blog post 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
112 lines
No EOL
5 KiB
HTML
112 lines
No EOL
5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pawel Orzech</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<div class="container">
|
|
<div class="profile">
|
|
<div class="avatar">
|
|
<img src="https://via.placeholder.com/60x60/666/fff?text=PO" alt="Pawel Orzech" class="avatar-img">
|
|
</div>
|
|
<div class="profile-info">
|
|
<h1 class="name">Pawel Orzech</h1>
|
|
<p class="bio">Thoughts, ideas, and stories from my journey</p>
|
|
</div>
|
|
</div>
|
|
<nav class="nav">
|
|
<a href="#" class="nav-link">About</a>
|
|
<a href="#" class="nav-link">Archive</a>
|
|
<a href="#" class="nav-link">Photos</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="main">
|
|
<div class="container">
|
|
<div class="posts">
|
|
|
|
<!-- Long form post example -->
|
|
<article class="post post-long">
|
|
<header class="post-header">
|
|
<time class="post-date">09.08.2025</time>
|
|
<h2 class="post-title">Welcome to My Blog</h2>
|
|
</header>
|
|
<div class="post-content">
|
|
<p>This is my first blog post! I'm excited to share my thoughts and experiences with you. Starting a blog has been something I've been thinking about for a while.</p>
|
|
<p>There's something magical about putting thoughts into words and sharing them with the world. Whether you're here by accident or intention, I'm glad you stopped by.</p>
|
|
<a href="posts/welcome.html" class="read-more">Continue reading →</a>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Short form post with image -->
|
|
<article class="post post-short">
|
|
<header class="post-header">
|
|
<time class="post-date">07.08.2025</time>
|
|
</header>
|
|
<div class="post-content">
|
|
<div class="post-image">
|
|
<img src="https://via.placeholder.com/600x400/f0f0f0/666?text=Beautiful+Landscape" alt="Beautiful landscape photo" loading="lazy">
|
|
</div>
|
|
<p>Beautiful sunset from my evening walk. Sometimes the simple moments are the most memorable.</p>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Short text-only post -->
|
|
<article class="post post-short">
|
|
<header class="post-header">
|
|
<time class="post-date">06.08.2025</time>
|
|
</header>
|
|
<div class="post-content">
|
|
<p>Currently reading about minimalist design principles. Less truly can be more when done thoughtfully.</p>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Short form post with image -->
|
|
<article class="post post-short">
|
|
<header class="post-header">
|
|
<time class="post-date">05.08.2025</time>
|
|
</header>
|
|
<div class="post-content">
|
|
<div class="post-image">
|
|
<img src="https://via.placeholder.com/600x300/f5f5f5/666?text=Tech+Setup" alt="My workspace setup" loading="lazy">
|
|
</div>
|
|
<p>My minimal workspace setup. Clean desk, clear mind.</p>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Long form post -->
|
|
<article class="post post-long">
|
|
<header class="post-header">
|
|
<time class="post-date">04.08.2025</time>
|
|
<h2 class="post-title">On Digital Minimalism</h2>
|
|
</header>
|
|
<div class="post-content">
|
|
<p>I've been thinking a lot about digital minimalism lately. In our hyper-connected world, the constant stream of notifications and information can be overwhelming.</p>
|
|
<p>The key is being intentional about what we let into our digital lives...</p>
|
|
<a href="posts/digital-minimalism.html" class="read-more">Continue reading →</a>
|
|
</div>
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<div class="pagination">
|
|
<a href="#" class="pagination-link">← Older posts</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>© 2025 Pawel Orzech</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |