Files
ai-web/resources/views/public/sitemap.blade.php
jiangdong.cheng aa16c9f8c2
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
init
2026-02-11 17:28:36 +08:00

15 lines
410 B
PHP

<?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>