<?php
header('Content-Type: application/xml; charset=utf-8');
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost';
$base = $protocol . '://' . $host;
$today = date('Y-m-d');
$urls = [
  ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
  ['loc' => '/wabi-sabi/', 'priority' => '0.9', 'changefreq' => 'weekly'],
  ['loc' => '/zen-life/', 'priority' => '0.9', 'changefreq' => 'weekly'],
  ['loc' => '/quiet-images/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/ai-inspiration/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/nature-collection/', 'priority' => '0.8', 'changefreq' => 'weekly'],
  ['loc' => '/contact/', 'priority' => '0.6', 'changefreq' => 'monthly'],
  ['loc' => '/karesansui/', 'priority' => '0.7', 'changefreq' => 'weekly'],
  ['loc' => '/still-life/', 'priority' => '0.7', 'changefreq' => 'weekly'],
  ['loc' => '/pottery/', 'priority' => '0.7', 'changefreq' => 'weekly'],
  ['loc' => '/blank-space/', 'priority' => '0.7', 'changefreq' => 'weekly'],
  ['loc' => '/zen-poetry/', 'priority' => '0.7', 'changefreq' => 'weekly'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<?php foreach($urls as $u): ?>
  <url>
    <loc><?php echo htmlspecialchars($base . $u['loc']); ?></loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq><?php echo $u['changefreq']; ?></changefreq>
    <priority><?php echo $u['priority']; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
