18 lines
591 B
Text
18 lines
591 B
Text
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
<% locales.each do |locale| %>
|
|
<url>
|
|
<loc>https://al-quran.reflectslight.io/<%= locale %>/</loc>
|
|
<priority>1.0</priority>
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
<% Ryo.each(name_by_id) do |_, transliterated_name| %>
|
|
<url>
|
|
<loc>https://al-quran.reflectslight.io/<%= locale %>/<%= transliterated_name %>/</loc>
|
|
<priority>0.8</priority>
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
<% end %>
|
|
<% end %>
|
|
</urlset>
|