<?php
require_once __DIR__ . '/includes/common.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = ['/', '/yingshi/', '/community/', '/ai-lab/', '/dimension/', '/creator/', '/contact/', '/jingxuan/', '/tianxin/', '/chuangzuo/', '/ai-tools/', '/qinggan/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="' . md_sitemap_namespace() . '">' . "\n";
foreach ($paths as $path) {
    echo "  <url>\n";
    echo '    <loc>' . md_e(md_url($path)) . "</loc>\n";
    echo '    <lastmod>' . date('Y-m-d') . "</lastmod>\n";
    echo "    <changefreq>daily</changefreq>\n";
    echo "    <priority>" . ($path === '/' ? '1.0' : '0.8') . "</priority>\n";
    echo "  </url>\n";
}
echo '</urlset>';
?>
