templates/sitemap/sitemap.xml.twig line 1

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