pawelorzech.github.io/index.html
Paweł Orzech 265f050a5c Redesign as minimalistic magazine-style blog
- Complete redesign with clean, editorial layout focused on content
- Removed flashy elements, gradients, and animations for minimal aesthetic
- Implemented magazine-style typography using Crimson Text and Inter fonts
- Added support for different post types: long-form, photography, and short posts
- Created photography-focused layout with proper image handling
- Streamlined navigation and removed complex features
- Simplified JavaScript to essential functionality only
- Perfect for photography, writing, and technology content
- Mobile-responsive design maintaining clean aesthetics

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-08 10:25:53 +02:00

103 lines
No EOL
4.3 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>
<meta name="description" content="Photography, writing, and thoughts on technology">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header">
<div class="header-container">
<div class="site-identity">
<h1 class="site-title">Pawel Orzech</h1>
<p class="site-tagline">Photography • Writing • Technology</p>
</div>
<nav class="site-nav">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">About</a>
<a href="#" class="nav-link">Contact</a>
</nav>
</div>
</header>
<main class="main-content">
<section class="posts">
<article class="post">
<div class="post-header">
<h2 class="post-title"><a href="posts/welcome.html">Welcome to My New Blog</a></h2>
<div class="post-meta">
<time datetime="2025-09-08">September 8, 2025</time>
<span class="post-type">Long-form</span>
</div>
</div>
<div class="post-content">
<p>After months of planning and designing, I'm excited to launch this new space where I'll share my thoughts on technology, development, photography, and life. This is more than just a blog—it's a digital notebook.</p>
</div>
</article>
<article class="post post-photo">
<div class="post-image">
<img src="https://via.placeholder.com/800x400/f8f9fa/6c757d?text=Photography+Sample" alt="Sample photograph" />
</div>
<div class="post-header">
<h2 class="post-title"><a href="#">Evening Light</a></h2>
<div class="post-meta">
<time datetime="2025-09-07">September 7, 2025</time>
<span class="post-type">Photography</span>
</div>
</div>
<div class="post-content">
<p>Captured during golden hour. There's something magical about the way light transforms everything it touches.</p>
</div>
</article>
<article class="post post-short">
<div class="post-header">
<div class="post-meta">
<time datetime="2025-09-06">September 6, 2025</time>
<span class="post-type">Short</span>
</div>
</div>
<div class="post-content">
<p>Just discovered this amazing new app for productivity. Sometimes the simplest tools are the most effective. Less is more.</p>
</div>
</article>
<article class="post">
<div class="post-header">
<h2 class="post-title"><a href="#">Nintendo DS in 2025: Nostalgia Gaming</a></h2>
<div class="post-meta">
<time datetime="2025-09-05">September 5, 2025</time>
<span class="post-type">Long-form</span>
</div>
</div>
<div class="post-content">
<p>Why I bought a Nintendo DS in 2025 and rediscovered the joy of handheld gaming. Sometimes the best technology is the one that just works, without complications or constant updates.</p>
</div>
</article>
</section>
</main>
<footer class="site-footer">
<div class="footer-container">
<p>&copy; 2025 Pawel Orzech</p>
<div class="footer-links">
<a href="mailto:contact@example.com">Email</a>
<a href="#">RSS</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>