<?php
require 'config.php';
if(empty($date)){ $date = "2016-01-04"; }
header('Content-type: text/xml; charset="utf-8"');
echo '<?xml version="1.0" encoding="utf-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc><?php echo $website; ?></loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
<url>
<loc><?php echo $website; ?>/about.php</loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
<url>
<loc><?php echo $website; ?>/what-we-do.php</loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
<url>
<loc><?php echo $website; ?>/govservices.php</loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
<url>
<loc><?php echo $website; ?>/how-we-work.php</loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
<url>
<loc><?php echo $website; ?>/contact.php</loc>
<lastmod><?php echo $date; ?></lastmod>
<priority>1.0</priority>
<changefreq>weekly</changefreq>
</url>
</urlset>