<?php header('Content-Type: application/xml; charset=utf-8'); require_once __DIR__.'/functions.php'; $ns='http://www.sitemaps'.'.'.'org/schemas/sitemap/0.9'; $urls=['/','/features/','/tutorials/','/updates/','/download/','/help/','/tips/','/faq/','/contact/']; echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?><urlset xmlns="<?php echo $ns; ?>"><?php foreach($urls as $u){ ?><url><loc><?php echo base_url().$u; ?></loc><lastmod><?php echo date('Y-m-d'); ?></lastmod><changefreq>weekly</changefreq><priority><?php echo $u==='/'?'1.0':'0.8'; ?></priority></url><?php } ?></urlset>