<?php
require __DIR__ . '/_site.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = ['/', '/brand/', '/films/', '/shorts/', '/life/', '/ai/', '/club/', '/contact/', '/classics/', '/diary/', '/poetry/', '/filter/', '/stories/'];
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>\n";
  echo '    <loc>' . e(absu($p)) . "</loc>\n";
  echo '    <lastmod>' . date('Y-m-d') . "</lastmod>\n";
  echo "    <changefreq>daily</changefreq>\n";
  echo "    <priority>" . ($p === '/' ? '1.0' : '0.8') . "</priority>\n";
  echo "  </url>\n";
}
echo '</urlset>';
?>
