<?xml version="1.0" encoding="UTF-8"?>
<?php
header('Content-Type: application/xml; charset=utf-8');
$currentDomain = $_SERVER['HTTP_HOST'];
$today = date('Y-m-d');
$urls = [
    ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['loc' => '/movie/', 'priority' => '0.9', 'changefreq' => 'daily'],
    ['loc' => '/short/', 'priority' => '0.9', 'changefreq' => 'daily'],
    ['loc' => '/life/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/ai/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/community/', 'priority' => '0.8', 'changefreq' => 'daily'],
    ['loc' => '/contact/', 'priority' => '0.6', 'changefreq' => 'monthly'],
    ['loc' => '/about/', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => '/film-review/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/life-diary/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/film-poem/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/retro-filter/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/story-film/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/terms/', 'priority' => '0.4', 'changefreq' => 'yearly'],
    ['loc' => '/privacy/', 'priority' => '0.4', 'changefreq' => 'yearly'],
];
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";
foreach ($urls as $u) {
    echo "  <url>\n";
    echo "    <loc>http://{$currentDomain}{$u['loc']}</loc>\n";
    echo "    <lastmod>{$today}</lastmod>\n";
    echo "    <changefreq>{$u['changefreq']}</changefreq>\n";
    echo "    <priority>{$u['priority']}</priority>\n";
    echo "  </url>\n";
}
echo '</urlset>';
exit;
?>
