Files
ai-web/resources/views/public/sitemap.blade.php

15 lines
410 B
PHP
Raw Normal View History

2026-02-11 17:28:36 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@foreach($urls as $url)
<url>
<loc>{{ $url['loc'] }}</loc>
@if(!empty($url['lastmod']))
<lastmod>{{ $url['lastmod'] }}</lastmod>
@endif
@if(!empty($url['priority']))
<priority>{{ $url['priority'] }}</priority>
@endif
</url>
@endforeach
</urlset>