<?php
require __DIR__ . '/includes/common.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = ['/', '/films/', '/community/', '/ai-lab/', '/anime/', '/creator/', '/contact/', '/featured-video/', '/sweet-community/', '/creation-center/', '/ai-toolbox/', '/emotion-space/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "
";
$siteMapNs = 'http' . '://' . 'www' . '.sitemaps' . '.org/schemas/sitemap/0.9';
echo '<urlset xmlns="' . $siteMapNs . '">' . "
";
?>
<?php foreach ($paths as $path): ?>
  <url>
    <loc><?= h($currentBase . $path) ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq><?= $path === '/' ? 'daily' : 'weekly' ?></changefreq>
    <priority><?= $path === '/' ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
<?php echo '</urlset>'; ?>
