<?php
header('Content-Type: application/xml; charset=utf-8');
require_once __DIR__ . '/includes/common.php';
require_once __DIR__ . '/includes/seo_helpers.php';

$home = seo_site_url();
$today = date('Y-m-d');

echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/">
    <url>
        <loc><?php echo htmlspecialchars($home . '/'); ?></loc>
        <mobile:mobile type="mobile"/>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?php echo htmlspecialchars($home . '/blog'); ?></loc>
        <mobile:mobile type="mobile"/>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?php echo htmlspecialchars($home . '/sitemap.php'); ?></loc>
        <mobile:mobile type="mobile"/>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.5</priority>
    </url>
</urlset>
