<?php
require __DIR__ . '/includes/common.php';
header('Content-Type: application/xml; charset=UTF-8');
$urls = [
    page_url('/'),
    page_url('archives/'),
    page_url('journal/'),
    page_url('space-log/'),
    page_url('visit-note/'),
    page_url('yearbook/')
];
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $url): ?>
  <url>
    <loc><?= e($url) ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority><?= $url === page_url('/') ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
