<?php
$files = glob("cache/*.html");

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

foreach($files as $f){
$title = basename($f,".html");
echo "<url>";
echo "<loc>/wiki/$title</loc>";
echo "</url>";
}

echo "</urlset>";
