<?php
header("Content-Type: text/xml");
require_once 'includes/db.php';

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

// 首页
echo '<url><loc>' . SITE_URL . '/</loc><lastmod>' . date('Y-m-d') . '</lastmod><priority>1.0</priority></url>';

// 文章页
$stmt = $pdo->query("SELECT id, updated_at FROM articles");
while ($row = $stmt->fetch()) {
    $loc = SITE_URL . '/article.php?id=' . $row['id'];
    $lastmod = date('Y-m-d', strtotime($row['updated_at']));
    echo "<url><loc>$loc</loc><lastmod>$lastmod</lastmod><priority>0.8</priority></url>";
}

echo '</urlset>';
?>