<?php
require_once __DIR__ . '/includes/helpers.php';
header('Content-Type: application/xml; charset=utf-8');
$urls = ['/', '/product/', '/creative/', '/solutions/', '/trends/', '/community/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?= mg_sitemap_ns() ?>">
<?php foreach ($urls as $url): ?>
  <url>
    <loc><?= mg_url($url) ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority><?= $url === '/' ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
