<?php
require 'config/db.php';
include 'includes/header.php';

// Fetch Posts
$stmt = $pdo->query("SELECT * FROM posts ORDER BY created_at DESC");
$posts = $stmt->fetchAll();
?>

<div class="container" style="padding-top: 40px; padding-bottom: 60px;">
    
    <h1 style="text-align: center; margin-bottom: 10px;">Knowledge Hub</h1>
    <p style="text-align: center; color: #666; margin-bottom: 50px;">Tips, tutorials, and guides for digital creators.</p>

    <div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px;">
        
        <?php foreach($posts as $p): ?>
        <div class="card" style="display: flex; flex-direction: column; height: 100%;">
            <a href="post.php?slug=<?php echo $p['slug']; ?>">
                <img src="<?php echo $p['image'] ? $p['image'] : 'https://via.placeholder.com/400x200'; ?>" 
                     style="width: 100%; height: 200px; object-fit: cover; border-radius: 8px 8px 0 0;">
            </a>
            
            <div style="padding: 20px; flex: 1; display: flex; flex-direction: column;">
                <h3 style="margin: 0 0 10px;">
                    <a href="post.php?slug=<?php echo $p['slug']; ?>" style="text-decoration: none; color: #2c3e50;">
                        <?php echo htmlspecialchars($p['title']); ?>
                    </a>
                </h3>
                <p style="color: #666; font-size: 14px; flex: 1; margin-bottom: 15px;">
                    <?php echo substr(strip_tags($p['content']), 0, 100) . '...'; ?>
                </p>
                <a href="post.php?slug=<?php echo $p['slug']; ?>" style="color: #3498db; font-weight: bold; text-decoration: none;">Read More &rarr;</a>
            </div>
        </div>
        <?php endforeach; ?>

    </div>
</div>

<?php include 'includes/footer.php'; ?>