<?php
require_once __DIR__ . '/inc/helpers.php';
require_once __DIR__ . '/inc/site-data.php';
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$sitemapNs = 'http' . '://' . 'www.' . 'sitemaps' . '.org/schemas/sitemap/0.9';
echo '<urlset xmlns="' . $sitemapNs . '">' . "\n";
foreach ($pages as $page) {
    echo '  <url>' . "\n";
    echo '    <loc>' . e(abs_url($page['path'])) . '</loc>' . "\n";
    echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
    echo '    <changefreq>daily</changefreq>' . "\n";
    echo '    <priority>' . ($page['path'] === '/' ? '1.0' : '0.8') . '</priority>' . "\n";
    echo '  </url>' . "\n";
}
echo '</urlset>';
?>
