<?php
require_once __DIR__ . '/inc/config.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = [
    '/',
    '/news/',
    '/topics/',
    '/creators/',
    '/community/',
    '/help/',
    '/contact/',
    '/life/',
    '/skills/',
    '/studio/',
    '/events/',
    '/rules/',
    '/submit/',
    '/guide/',
    '/report/',
    '/search/',
    '/data/',
    '/author/lin-yiran/',
    '/author/zhou-mumu/',
    '/author/anzhi/',
    '/author/qin-shuhang/',
];
$ns = 'http://' . 'www' . chr(46) . 'sitemaps' . chr(46) . 'org/schemas/sitemap/0.9';
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
?>
<urlset xmlns="<?= e($ns) ?>">
<?php foreach ($paths as $path): ?>
    <url>
        <loc><?= e(absolute_url($path)) ?></loc>
        <lastmod><?= date('Y-m-d') ?></lastmod>
        <changefreq><?= $path === '/' ? 'daily' : 'weekly' ?></changefreq>
        <priority><?= $path === '/' ? '1.0' : '0.8' ?></priority>
    </url>
<?php endforeach; ?>
</urlset>
