<?php
require_once __DIR__ . '/includes/helpers.php';
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach (page_paths() as $path): ?>
  <url>
    <loc><?php echo esc(site_url($path)); ?></loc>
    <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?php echo $path === '/' ? '1.0' : '0.8'; ?></priority>
  </url>
<?php endforeach; ?>
  <url><loc><?php echo esc(site_url('/data/home-modules/')); ?></loc><lastmod><?php echo date('Y-m-d'); ?></lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url>
  <url><loc><?php echo esc(site_url('/data/faq/')); ?></loc><lastmod><?php echo date('Y-m-d'); ?></lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url>
</urlset>