<?php
// NuCMS class
include("../../nucms.php");


// Generate sitemap
$xml = $nu->createXMLSiteMap(false, array(	"'main'",
									   		"'project'",
									   		"'over-ons'",
									   		"'explanimation'"
									   	 ));


// Output as XML
header('Content-type: application/xml; charset="utf-8"',true);
echo $xml;

?>