<?php
header('Content-Type: application/xml; charset=utf-8');
require_once __DIR__ . '/site-data.php';
$paths = ['', 'topics', 'boards', 'discover', 'ranking', 'me', 'story', 'recommend', 'help', 'rules', 'news', 'activity'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo "<urlset>\n";
foreach($paths as $p){
  echo "  <url>\n";
  echo "    <loc>" . h(page_url($p)) . "</loc>\n";
  echo "    <lastmod>" . date('Y-m-d') . "</lastmod>\n";
  echo "    <changefreq>daily</changefreq>\n";
  echo "    <priority>" . ($p === '' ? '1.0' : '0.8') . "</priority>\n";
  echo "  </url>\n";
}
echo "</urlset>\n";
?>
