<?php
require_once __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url><loc><?= e(SITE_URL) ?>/</loc><changefreq>daily</changefreq><priority>1.0</priority></url>
    <url><loc><?= e(SITE_URL) ?>/categories.php</loc><changefreq>weekly</changefreq><priority>0.8</priority></url>
    <url><loc><?= e(SITE_URL) ?>/about.php</loc><changefreq>monthly</changefreq><priority>0.5</priority></url>
    <?php foreach (get_posts(['page'=>1,'per_page'=>1000])['posts'] as $p): ?>
        <url>
            <loc><?= e(SITE_URL) ?>/article.php?slug=<?= e($p['slug']) ?></loc>
            <lastmod><?= e(date('Y-m-d', strtotime($p['created_at']))) ?></lastmod>
            <changefreq>weekly</changefreq>
            <priority>0.7</priority>
        </url>
    <?php endforeach; ?>
    <?php foreach (get_categories() as $c): ?>
        <url>
            <loc><?= e(SITE_URL) ?>/category.php?slug=<?= e($c['slug']) ?></loc>
            <changefreq>weekly</changefreq>
            <priority>0.6</priority>
        </url>
    <?php endforeach; ?>
</urlset>
