<?php
// sitemap.php

header("Content-Type: application/xml; charset=utf-8");

$baseUrl = "https://streamlinehomeimprovement.com/pages";
$postsDir = __DIR__ . "/posts";
$files = glob($postsDir . "/*.php");

echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- Static pages -->
  <url>
    <loc><?= $baseUrl ?>/index.php</loc>
    <priority>1.0</priority>
  </url>
  <url>
    <loc><?= $baseUrl ?>/blog.php</loc>
    <priority>0.8</priority>
  </url>
  <url>
    <loc><?= $baseUrl ?>/contact.php</loc>
    <priority>0.8</priority>
  </url>

  <!-- Dynamic blog posts -->
  <?php foreach ($files as $file): ?>
    <?php
      $filename = basename($file);
      $lastmod = date('Y-m-d', filemtime($file));
    ?>
    <url>
      <loc><?= $baseUrl ?>/posts/<?= htmlspecialchars($filename) ?></loc>
      <lastmod><?= $lastmod ?></lastmod>
      <priority>0.6</priority>
    </url>
  <?php endforeach; ?>
</urlset>
