<?php
require_once __DIR__ . '/includes/common.php';
header('Content-Type: application/xml; charset=UTF-8');
$pages = [
    ['path' => '/', 'priority' => '1.0'],
    ['path' => '/brand-film/', 'priority' => '0.8'],
    ['path' => '/short-video/', 'priority' => '0.8'],
    ['path' => '/film-life/', 'priority' => '0.8'],
    ['path' => '/ai-create/', 'priority' => '0.8'],
    ['path' => '/film-salon/', 'priority' => '0.8'],
    ['path' => '/contact/', 'priority' => '0.8'],
    ['path' => '/classic-film-analysis/', 'priority' => '0.8'],
    ['path' => '/literary-life-diary/', 'priority' => '0.8'],
    ['path' => '/movie-poetry-space/', 'priority' => '0.8'],
    ['path' => '/retro-filter-workshop/', 'priority' => '0.8'],
    ['path' => '/story-film-gallery/', 'priority' => '0.8'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "
";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "
";
foreach ($pages as $page) {
    echo "  <url>
";
    echo '    <loc>' . site_e(site_url($page['path'])) . "</loc>
";
    echo '    <lastmod>' . date('Y-m-d') . "</lastmod>
";
    echo "    <changefreq>daily</changefreq>
";
    echo '    <priority>' . $page['priority'] . "</priority>
";
    echo "  </url>
";
}
echo '</urlset>' . "
";
?>