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