]> git.localhorst.tv Git - alttp.git/blob - resources/views/sitemap.blade.php
snes settings
[alttp.git] / resources / views / sitemap.blade.php
1 <?php echo '<?xml version="1.0" encoding="UTF-8"?>', "\n"; ?>
2 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3 @foreach ($urls as $url)
4         <url>
5                 <loc>{{ url($url->path) }}</loc>
6                 @if ($url->lastmod)
7                         <lastmod>{{ $url->lastmod->tz('UTC')->toAtomString() }}</lastmod>
8                 @endif
9                 <changefreq>{{ $url->changefreq }}</changefreq>
10                 <priority>{{ $url->priority }}</priority>
11         </url>
12 @endforeach
13 </urlset>