<?php
require __DIR__ . '/app/bootstrap.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">

<?php
$stmt = $pdo->query("SELECT slug FROM categories WHERE active=1");

while ($row = $stmt->fetch()) {
    $url = BASE_URL . "category/" . rawurlencode($row['slug']);
?>
    <url>
        <loc><?= htmlspecialchars($url) ?></loc>
        <changefreq>daily</changefreq>
    </url>
<?php } ?>

</urlset>