<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <!-- Hlavní stránka -->
    <url>
        <loc>https://designaweb.cz/</loc>
        <lastmod>2024-02-22</lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>

    <!-- Ostatní důležité stránky -->
    <url>
        <loc>https://designaweb.cz/index.php?page=sluzby</loc>
        <lastmod>2024-02-22</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>

    <url>
        <loc>https://designaweb.cz/index.php?page=kontakt</loc>
        <lastmod>2024-02-22</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://designaweb.cz/index.php?page=blog</loc>
        <lastmod>2024-02-22</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.7</priority>
    </url>

    <!-- Automatické generování článků z blogu (pokud je dynamický) -->
    <?php
    require_once "config.php";
    $stmt = $mysqli->prepare("SELECT slug FROM blog WHERE status = 'published' ORDER BY created_at DESC");
    $stmt->execute();
    $result = $stmt->get_result();
    while ($row = $result->fetch_assoc()):
    ?>
    <url>
        <loc>https://designaweb.cz/index.php?page=clanek&amp;slug=<?php echo htmlspecialchars($row['slug']); ?></loc>
        <changefreq>weekly</changefreq>
        <priority>0.6</priority>
    </url>
    <?php endwhile; $stmt->close(); ?>
</urlset>
