<?php
require __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=utf-8');
$ns = 'http' . '://' . 'www' . '.' . 'sitemaps' . '.' . 'org/schemas/sitemap/0.9';
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?= e($ns) ?>">
<?php foreach (page_routes() as $route): ?>
  <url>
    <loc><?= e(current_url($route['loc'])) ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?= e($route['priority']) ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
