<?php
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;

$base_url = "https://simulateur-de-plus-value-immobiliere.fr";

$static_pages = [
    '' => '1.0',
    'prix-immobiliers' => '0.9',
    'bareme-abattements' => '0.9',
    'exonerations' => '0.9',
    'travaux-et-frais' => '0.9',
    'credit-immobilier' => '0.9',
    'contact' => '0.5'
];
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($static_pages as $path => $priority): ?>
    <url>
        <loc><?php echo $base_url . ($path ? '/' . $path : ''); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority><?php echo $priority; ?></priority>
    </url>
<?php endforeach; ?>
</urlset>