<?php
header("Content-Type: application/xml; charset=utf-8");
require_once __DIR__ . '/config/config.php';
require_once __DIR__ . '/includes/db.php';
$db = new Database();
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc><?php echo SITE_URL; ?>/</loc>
    <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    <changefreq>always</changefreq>
    <priority>1.0</priority>
  </url>
  <?php
  $db->query("SELECT slug, updated_at FROM articles WHERE status = 'published' ORDER BY updated_at DESC");
  $articles = $db->resultSet();
  foreach($articles as $art):
  ?>
  <url>
    <loc><?php echo SITE_URL; ?>/news/<?php echo $art['slug']; ?></loc>
    <lastmod><?php echo date('Y-m-d', strtotime($art['updated_at'])); ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <?php endforeach; ?>
</urlset>
