<?php
require_once __DIR__ . '/includes/bootstrap.php';
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
?>
<urlset xmlns="<?= e(sitemap_xmlns()) ?>">
<?php foreach (sitemap_paths() as $item): ?>
    <url>
        <loc><?= e(full_url($item['path'])) ?></loc>
        <lastmod><?= e(today_iso()) ?></lastmod>
        <changefreq><?= e($item['changefreq']) ?></changefreq>
        <priority><?= e($item['priority']) ?></priority>
    </url>
<?php endforeach; ?>
</urlset>
