<?php
require_once __DIR__ . '/includes/data.php';
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
$routes = all_routes();
?>
<urlset xmlns="<?= e(sitemap_namespace()) ?>">
<?php foreach ($routes as $route): ?>
    <url>
        <loc><?= e(absolute_url($route)) ?></loc>
        <lastmod><?= e(iso_today()) ?></lastmod>
        <changefreq><?= $route === '' ? 'daily' : 'weekly' ?></changefreq>
        <priority><?= $route === '' ? '1.0' : '0.8' ?></priority>
    </url>
<?php endforeach; ?>
</urlset>
