<?php
header('Content-Type: application/xml; charset=UTF-8');
require_once __DIR__ . '/config.php';
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php
$keyword_pages = array_filter($all_pages, fn($p) => !in_array($p['category'], ['상담','사이트맵']));
foreach($keyword_pages as $p):
  $url = SITE_DOMAIN . $p['url'];
?>
  <url>
    <loc><?= htmlspecialchars($url) ?></loc>
    <lastmod><?= $p['date'] ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority><?= $p['category']==='메인' ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
