<?php
header('Content-Type: application/xml; charset=UTF-8');
$base = 'https://turkiye.de/';

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <sitemap>
    <loc><?= $base ?>sitemap-categories.xml</loc>
    <lastmod><?= date('c') ?></lastmod>
  </sitemap>

  <sitemap>
    <loc><?= $base ?>sitemap-listings.xml</loc>
    <lastmod><?= date('c') ?></lastmod>
  </sitemap>

  <sitemap>
    <loc><?= $base ?>sitemap-pages.xml</loc>
    <lastmod><?= date('c') ?></lastmod>
  </sitemap>

</sitemapindex>