<?php

header("Content-Type: application/xml; charset=utf-8");

$pages = array(
"",
"index.php",
"oktober.php",
"november.php",
"december.php",
"februari.php",
"maart.php",
"april.php",
"contact.php",
"links.php",
"downloads.php",
"laatstenieuws.php"
);

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

foreach ($pages as $page) {

echo "<url>";
echo "<loc>https://cr028.mesgroningendrenthe.nl/$page</loc>";
echo "</url>";

}

echo "</urlset>";

?>