<?php
require __DIR__.'/inc.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = ['/', '/brand-movie/', '/art-shorts/', '/film-life/', '/ai-creation/', '/cinema-salon/', '/contact/', '/classic-film/', '/life-diary/', '/cinema-poem/', '/vintage-filter/', '/story-film/'];
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
echo "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
foreach($paths as $p){
  echo "  <url><loc>".e(abs_url($p))."</loc><lastmod>".date('Y-m-d')."</lastmod><changefreq>weekly</changefreq><priority>".($p==='/'?'1.0':'0.8')."</priority></url>\n";
}
echo "</urlset>\n";
?>
