templates/front/sitemap.xml.twig line 1

Open in your IDE?
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <urlset
  3.       xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  4.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.       xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
  6.             http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
  7. <!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
  8.     {% for lang in langs %}
  9.         <url>
  10.             <loc>{{ url }}{% if lang.defaultLang==0 %}{{ lang.iso2 }}{% endif %}</loc>
  11.             <lastmod>{{ "now"|date("Y-m-d") }}T00:15:{{ "now"|date("d") }}+00:00</lastmod>
  12.             <changefreq>weekly</changefreq>
  13.             <priority>1.00</priority>
  14.         </url>
  15.         {% for item in items[lang.iso2] %}
  16.             <url>
  17.                 <loc>{{ url }}{% if lang.defaultLang==0 %}{{ lang.iso2 }}/{% endif %}{{ item.url }}</loc>
  18.                 <lastmod>{{ "now"|date("Y-m-d") }}T00:15:{{ "now"|date("d") }}+00:00</lastmod>
  19.                 <changefreq>weekly</changefreq>
  20.                 <priority>0.80</priority>
  21.             </url>
  22.         {% endfor %}
  23.     {% endfor %}
  24. </urlset>