<?php
/**
 * Sitemap Index
 * URL: /sitemap-index.xml
 */
require_once __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=utf-8');
header('X-Robots-Tag: noindex');

$base = 'https://dorojay.com';
$today = date('Y-m-d');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc><?= $base ?>/sitemap.xml</loc>
    <lastmod><?= $today ?></lastmod>
  </sitemap>
  <sitemap>
    <loc><?= $base ?>/sitemap-products.xml</loc>
    <lastmod><?= $today ?></lastmod>
  </sitemap>
</sitemapindex>
