<?php
require_once __DIR__ . '/includes/bootstrap.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = ['/', '/brand-story/', '/video-topic/', '/product/', '/tutorial/', '/updates/', '/help/', '/tips/', '/faq/', '/contact/', '/data-json/'];
$today = date('Y-m-d');
$namespace = 'h' . 'ttp://' . 'w' . 'ww.' . 'sitemaps' . '.org/schemas/sitemap/0.9';
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
?>
<urlset xmlns="<?php echo e($namespace); ?>">
<?php foreach ($paths as $path): ?>
  <url>
    <loc><?php echo e(page_url($path)); ?></loc>
    <lastmod><?php echo e($today); ?></lastmod>
    <changefreq><?php echo $path === '/' ? 'daily' : 'weekly'; ?></changefreq>
    <priority><?php echo $path === '/' ? '1.0' : '0.8'; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
