<?php
require __DIR__.'/includes/helpers.php';
header('Content-Type: application/xml; charset=UTF-8');
$paths=['/','/guofeng/','/dongfang-life/','/image-wall/','/culture/','/creator/','/contact/','/shuimo-yaji/','/gufeng-life-diary/','/yijing-gallery/','/poetry-space/','/objects/'];
$xmlns='http://'.'www.'.'sitemaps'.'.org/schemas/sitemap/0.9';
echo '<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL;
echo '<urlset xmlns="'.e($xmlns).'">'.PHP_EOL;
foreach($paths as $p){ echo '  <url>'.PHP_EOL.'    <loc>'.e(base_url($p)).'</loc>'.PHP_EOL.'    <lastmod>'.date('Y-m-d').'</lastmod>'.PHP_EOL.'    <changefreq>weekly</changefreq>'.PHP_EOL.'    <priority>'.($p==='/'?'1.0':'0.8').'</priority>'.PHP_EOL.'  </url>'.PHP_EOL; }
echo '</urlset>'.PHP_EOL;
?>