create a blog template using https://faifiltri.netgurus.ca/ as the theme, we need a blog post and articles page
0564c2b
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Articles - PixelPulse Chronicles</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#3B82F6', | |
| secondary: '#10B981' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .hover-lift { | |
| transition: all 0.3s ease; | |
| } | |
| .hover-lift:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-lg sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i data-feather="zap" class="text-primary h-8 w-8"></i> | |
| <span class="ml-2 text-xl font-bold text-gray-900">PixelPulse</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="index.html" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">Home</a> | |
| <a href="articles.html" class="text-primary px-3 py-2 rounded-md text-sm font-medium border-b-2 border-primary">Articles</a> | |
| <a href="#" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">About</a> | |
| <a href="#" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">Contact</a> | |
| </div> | |
| <div class="flex items-center md:hidden"> | |
| <button class="mobile-menu-button p-2 rounded-md text-gray-900"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Articles Header --> | |
| <section class="bg-white py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">All Articles</h1> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Dive into our collection of thought-provoking articles about technology, design, and innovation.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Articles Grid --> | |
| <section class="py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Article 1 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/technology/640x360/4" alt="Web Development" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-primary text-sm font-semibold">Technology</span> | |
| <span class="text-gray-500 text-sm">May 15, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">The Future of Web Development</h2> | |
| <p class="text-gray-600 mb-4">Exploring the latest trends and technologies shaping the future of web development and user experience.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <!-- Article 2 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/minimal/640x360/5" alt="Design Trends" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-secondary text-sm font-semibold">Design</span> | |
| <span class="text-gray-500 text-sm">May 12, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">Minimalism in Digital Design</h2> | |
| <p class="text-gray-600 mb-4">How minimalism is revolutionizing user experience and interface design across digital platforms.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <!-- Article 3 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/abstract/640x360/6" alt="AI Revolution" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-primary text-sm font-semibold">AI & ML</span> | |
| <span class="text-gray-500 text-sm">May 10, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">AI Revolution in Creative Industries</h2> | |
| <p class="text-gray-600 mb-4">How artificial intelligence is transforming creative workflows and artistic expression across various industries.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <!-- Article 4 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/workspace/640x360/7" alt="Remote Work" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-secondary text-sm font-semibold">Lifestyle</span> | |
| <span class="text-gray-500 text-sm">May 8, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">The Future of Remote Work</h2> | |
| <p class="text-gray-600 mb-4">Analyzing how remote work is evolving and what it means for productivity, collaboration, and work-life balance.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <!-- Article 5 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/science/640x360/8" alt="Quantum Computing" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-primary text-sm font-semibold">Science</span> | |
| <span class="text-gray-500 text-sm">May 5, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">Quantum Computing Explained</h2> | |
| <p class="text-gray-600 mb-4">A beginner-friendly guide to understanding quantum computing and its potential impact on various industries.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| <!-- Article 6 --> | |
| <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift"> | |
| <img src="http://static.photos/gaming/640x360/9" alt="Game Development" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-between mb-3"> | |
| <span class="text-secondary text-sm font-semibold">Gaming</span> | |
| <span class="text-gray-500 text-sm">May 3, 2024</span> | |
| </div> | |
| <h2 class="text-xl font-bold text-gray-900 mb-3">The Evolution of Game Development</h2> | |
| <p class="text-gray-600 mb-4">Tracing the journey of game development from pixel art to photorealistic graphics and beyond.</p> | |
| <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center"> | |
| Read Full Article | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </article> | |
| </div> | |
| <!-- Pagination --> | |
| <div class="flex justify-center mt-12 space-x-2"> | |
| <button class="px-4 py-2 bg-primary text-white rounded-lg font-semibold">1</button> | |
| <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors">2</button> | |
| <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors">3</button> | |
| <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors"> | |
| Next | |
| <i data-feather="arrow-right" class="ml-1 h-4 w-4 inline"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="zap" class="text-primary h-6 w-6"></i> | |
| <span class="ml-2 text-xl font-bold">PixelPulse</span> | |
| </div> | |
| <p class="text-gray-400">Exploring the intersection of technology, design, and creativity.</p> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold mb-4">Quick Links</h3> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="index.html" class="hover:text-white transition-colors">Home</a></li> | |
| <li><a href="articles.html" class="hover:text-white transition-colors">Articles</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">About</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold mb-4">Categories</h3> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Technology</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Design</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Development</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">AI & ML</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold mb-4">Connect</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"> | |
| <p>© 2024 PixelPulse Chronicles. All rights reserved.</p> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| // Mobile menu toggle | |
| document.querySelector('.mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.querySelector('.mobile-menu'); | |
| if (menu.classList.contains('hidden')) { | |
| menu.classList.remove('hidden'); | |
| } else { | |
| menu.classList.add('hidden'); | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> | |