<?php
require_once __DIR__ . '/inc/site.php';
header('Content-Type: application/xml; charset=UTF-8');
$ns = 'http://' . 'www.' . 'sitemaps' . '.org/schemas/sitemap/0.9';
$paths = ['/', '/brand-photography/', '/retro-video/', '/literary-stories/', '/ai-filter/', '/salon/', '/contact/', '/film-review/', '/photo-diary/', '/image-poetry/', '/filter-workshop/', '/story-darkroom/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="' . e($ns) . '">' . "\n";
foreach ($paths as $path) {
    echo "  <url>\n";
    echo '    <loc>' . e(canonical_url($path)) . "</loc>\n";
    echo '    <lastmod>' . date('Y-m-d') . "</lastmod>\n";
    echo "    <changefreq>daily</changefreq>\n";
    echo "    <priority>" . ($path === '/' ? '1.0' : '0.8') . "</priority>\n";
    echo "  </url>\n";
}
echo '</urlset>';
?>
