<?php
header("Content-Type: application/xml; charset=UTF-8");
echo '<?xml version="1.0" encoding="UTF-8"?>';
$hoje = date('Y-m-d');
?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <url>
        <loc>http://www.crechedaemilia.com.br/</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/sobre-nos</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/mural-da-emilia</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/galerias</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/blog</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/contato</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/search-posts</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc>http://www.crechedaemilia.com.br/search-docs</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php
    include "admin/Conn/Crud.php";
    $ReadPost = ExeRead("posts", "ORDER BY post_date DESC");
    while ($ln = mysqli_fetch_assoc($ReadPost)):
        extract($ln);
        ?>

        <url>
            <loc>http://www.crechedaemilia.com.br/post/<?= $post_slug ?></loc>
            <lastmod><?= date('Y-m-d', strtotime($post_date)) ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>

    <?php endwhile; ?>
    
    <?php
    $ReadTag = ExeRead("tags", "ORDER BY tag_id DESC");
    while ($ln = mysqli_fetch_assoc($ReadTag)):
        extract($ln);
        ?>

        <url>
            <loc>http://www.crechedaemilia.com.br/tag/<?= $tag_slug ?></loc>
            <lastmod><?= $hoje ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>

    <?php endwhile; ?>
    
    <?php
    $ReadCate = ExeRead("categorias", "ORDER BY id_cate DESC");
    while ($ln = mysqli_fetch_assoc($ReadCate)):
        extract($ln);
        ?>

        <url>
            <loc>http://www.crechedaemilia.com.br/categoria/<?= $slug_cate ?></loc>
            <lastmod><?= $hoje ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>

    <?php endwhile; ?>

</urlset>