<?php
require __DIR__ . '/includes/site.php';
header('Content-Type: application/xml; charset=UTF-8');
$urls = ['/', '/brand-movie/', '/short-video/', '/film-life/', '/ai-create/', '/film-salon/', '/contact/', '/classic-film/', '/literary-life/', '/movie-poem/', '/retro-filter/', '/story-film/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "
";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $path): ?>
  <url>
    <loc><?php echo mg_e(mg_url($path)); ?></loc>
    <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?php echo $path === '/' ? '1.0' : '0.8'; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
