<?php
header('Content-Type: application/xml; charset=utf-8');

// Bugünün tarihi (ISO 8601 formatında)
$today = date('c'); // 2025-05-23T10:00:00+03:00 formatında
$lastWeek = date('c', strtotime('-7 days'));
$lastMonth = date('c', strtotime('-30 days'));

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
    
    <!-- Ana Sayfa -->
    <url>
        <loc>https://www.defnefsener.com/</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
        
        <!-- Görseller -->
        <image:image>
            <image:loc>https://www.defnefsener.com/img/songuryan1.png</image:loc>
            <image:caption>Songuryan The King of Atropa - Epic Fantasy War Novel</image:caption>
            <image:title>Songuryan Book 1</image:title>
        </image:image>
        
        <image:image>
            <image:loc>https://www.defnefsener.com/img/songuryan2.png</image:loc>
            <image:caption>Songuryan The Captive of Lucas - Dark Fantasy Adventure</image:caption>
            <image:title>Songuryan Book 2</image:title>
        </image:image>
        
        <image:image>
            <image:loc>https://www.defnefsener.com/img/songuryan3.png</image:loc>
            <image:caption>Songuryan The Owner of Fire - Epic Fantasy Battle</image:caption>
            <image:title>Songuryan Book 3</image:title>
        </image:image>
        
        <image:image>
            <image:loc>https://www.defnefsener.com/img/author.jpg</image:loc>
            <image:caption>Defne F. Sener - Turkish Epic Fantasy Author</image:caption>
            <image:title>Author Photo</image:title>
        </image:image>
    </url>
    
    <!-- Alt sayfalar -->
    <url>
        <loc>https://www.defnefsener.com/books/</loc>
        <lastmod><?php echo $lastWeek; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <url>
        <loc>https://www.defnefsener.com/about/</loc>
        <lastmod><?php echo $lastMonth; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <url>
        <loc>https://www.defnefsener.com/contact/</loc>
        <lastmod><?php echo $today; ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
</urlset>