<?php

header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header('Content-type: text/xml; charset="utf-8"');

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
         http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"
         xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <sitemap>
      <loc>http://www.klinkenberg.ws/cms/sitemap.xml</loc>
      <lastmod><?php echo date('Y-m-d\TH:i:s'); ?>-01:00</lastmod>
   </sitemap>
</sitemapindex>

