Files
ahrommag/resources/views/sitemap/index.blade.php
2025-11-16 12:43:07 +03:30

40 lines
1.1 KiB
PHP

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>{{ url('page.xml').'/' }}</loc>
</sitemap>
<sitemap>
<loc>{{ url('post-category.xml').'/' }}</loc>
</sitemap>
<sitemap>
<loc>{{ url('news-category.xml').'/' }}</loc>
</sitemap>
@if ($countNews > 0)
@for ($i = 0; $i < $news; $i++)
@if ($i == 0)
<sitemap>
<loc>{{ url('news.xml').'/' }}</loc>
</sitemap>
@else
<sitemap>
<loc>{{ url('news' . $i + 1 . '.xml').'/' }}</loc>
</sitemap>
@endif
@endfor
@endif
@if ($countBlogs > 0)
@for ($i = 0; $i < $blogs; $i++)
@if ($i == 0)
<sitemap>
<loc>{{ url('post.xml').'/' }}</loc>
</sitemap>
@else
<sitemap>
<loc>{{ url('post' . $i + 1 . '.xml').'/' }}</loc>
</sitemap>
@endif
@endfor
@endif
</sitemapindex>