<?php
require __DIR__ . '/functions.php';
header('Content-Type: application/xml; charset=UTF-8');
$urls = [
  ['/', '1.00'], ['/guofeng/', '0.86'], ['/life/', '0.86'], ['/videos/', '0.90'], ['/community/', '0.76'], ['/creators/', '0.78'], ['/contact/', '0.72'],
  ['/shuimo-yaji/', '0.70'], ['/gufeng-diary/', '0.70'], ['/yijing-guan/', '0.70'], ['/shici-space/', '0.70'], ['/yaqi/', '0.70']
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $u): ?>
  <url>
    <loc><?= e(site_url($u[0])) ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority><?= e($u[1]) ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
