<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://news.rashidbutt.com/</loc>
        <priority>1.0</priority>
        <changefreq>daily</changefreq>
    </url>
    <url>
        <loc>https://news.rashidbutt.com/news</loc>
        <priority>0.9</priority>
        <changefreq>daily</changefreq>
    </url>
    <?php
    // ڈیٹابیس سے تمام شائع شدہ خبریں
    $stmt = $pdo->query("SELECT slug, published_at FROM articles WHERE status='published' ORDER BY published_at DESC");
    while ($row = $stmt->fetch()) {
        echo "<url>";
        echo "<loc>https://news.rashidbutt.com/article/" . htmlspecialchars($row['slug']) . "</loc>";
        echo "<lastmod>" . date('Y-m-d', strtotime($row['published_at'])) . "</lastmod>";
        echo "<priority>0.8</priority>";
        echo "</url>";
    }
    ?>
</urlset>