templates/sitemap.xml.twig line 1

Open in your IDE?
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
  3.     {% for url in urls %}
  4.         <url>
  5.             <loc>{{ url.loc }}</loc>
  6.             {% if url.lastmod is defined %}
  7.                 <lastmod>{{ url.lastmod }}</lastmod>
  8.             {% endif %}
  9.             {% if url.changefreq is defined %}
  10.                 <changefreq>{{ url.changefreq }}</changefreq>
  11.             {% endif %}
  12.             {% if url.priority is defined %}
  13.                 <priority>{{ url.priority }}</priority>
  14.             {% endif %}
  15.         </url>
  16.     {% endfor %}
  17. </urlset>