<?php
require __DIR__ . '/includes/common.php';
header('Content-Type: application/xml; charset=UTF-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$base = current_base_url();
$today = date('Y-m-d');
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach (all_routes() as $route): ?>
  <url>
    <loc><?php echo h($base . $route); ?></loc>
    <lastmod><?php echo h($today); ?></lastmod>
    <changefreq><?php echo $route === '/' ? 'daily' : 'weekly'; ?></changefreq>
    <priority><?php echo $route === '/' ? '1.0' : '0.8'; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
