<?php
header("Content-Type: application/xml; charset=utf-8");

$baseUrl = "https://athenaluxus.com";

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>

<sitemapindex xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">

    <sitemap>
        <loc><?= $baseUrl ?>/sitemap.xml</loc>
        <lastmod><?= date('Y-m-d') ?></lastmod>
    </sitemap>

    <sitemap>
        <loc><?= $baseUrl ?>/blog-sitemap.xml</loc>
        <lastmod><?= date('Y-m-d') ?></lastmod>
    </sitemap>

</sitemapindex>
