<?php
require_once __DIR__ . '/partials/init.php';
header('Content-Type: application/xml; charset=UTF-8');
$ns = 'http' . '://www.' . 'sitemaps' . '.' . 'org' . '/schemas/sitemap/0.9';
$paths = [
    ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['loc' => '/wabi-sabi/', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => '/lifestyle/', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => '/video/', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => '/ai/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/gathering/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/contact/', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => '/rock-garden/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/still-life/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/pottery/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/white-space/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/zen-poems/', 'priority' => '0.7', 'changefreq' => 'weekly']
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?= e($ns) ?>">
<?php foreach ($paths as $item) : ?>
  <url>
    <loc><?= e(site_url($item['loc'])) ?></loc>
    <lastmod><?= e($isoToday) ?></lastmod>
    <changefreq><?= e($item['changefreq']) ?></changefreq>
    <priority><?= e($item['priority']) ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
