<?php
$root = __DIR__;
chdir($root);
require $root . '/helpers.php';
require_once $root . '/source/sitemap.php';

ini_set('display_errors', '0');
header('Content-Type: application/xml; charset=UTF-8');
header('Cache-Control: public, max-age=3600');
echo buildSitemapXml();
