<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
    
    <?php
    require_once __DIR__ . '/../App/bootstrap.php';
    $settingModel = new \App\Models\SettingModel();
    $baseUrl = $settingModel->get('seo_site_url', 'https://vicesapanca.com');
    $roomModel = new \App\Models\RoomModel();
    $rooms = $roomModel->all();
    ?>
    
    <!-- Ana Sayfa -->
    <url>
        <loc><?= htmlspecialchars($baseUrl); ?>/</loc>
        <lastmod><?= date('Y-m-d'); ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    
    <!-- Hakkımızda -->
    <url>
        <loc><?= htmlspecialchars($baseUrl); ?>/about.php</loc>
        <lastmod><?= date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- Galeri -->
    <url>
        <loc><?= htmlspecialchars($baseUrl); ?>/gallery.php</loc>
        <lastmod><?= date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- İletişim -->
    <url>
        <loc><?= htmlspecialchars($baseUrl); ?>/contact.php</loc>
        <lastmod><?= date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <!-- Bungalovlar (Odalar) -->
    <?php foreach ($rooms as $room): ?>
    <url>
        <loc><?= htmlspecialchars($baseUrl); ?>/index.php#room-<?= $room['id']; ?></loc>
        <lastmod><?= date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
    </url>
    <?php endforeach; ?>
    
</urlset>

