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">
  3.     <url>
  4.         <loc>https://2sweet.eu/</loc>
  5.         <changefreq>weekly</changefreq>
  6.         <priority>1.0</priority>
  7.     </url>
  8.     <url>
  9.         <loc>https://2sweet.eu/usluge</loc>
  10.         <changefreq>monthly</changefreq>
  11.         <priority>0.9</priority>
  12.     </url>
  13.     <url>
  14.         <loc>https://2sweet.eu/proizvodi</loc>
  15.         <changefreq>weekly</changefreq>
  16.         <priority>0.8</priority>
  17.     </url>
  18.     <url>
  19.         <loc>https://2sweet.eu/galerija</loc>
  20.         <changefreq>weekly</changefreq>
  21.         <priority>0.8</priority>
  22.     </url>
  23.     <url>
  24.         <loc>https://2sweet.eu/videoteka</loc>
  25.         <changefreq>weekly</changefreq>
  26.         <priority>0.7</priority>
  27.     </url>
  28.     <url>
  29.         <loc>https://2sweet.eu/novosti</loc>
  30.         <changefreq>weekly</changefreq>
  31.         <priority>0.7</priority>
  32.     </url>
  33.     <url>
  34.         <loc>https://2sweet.eu/svadbeni-kalkulator</loc>
  35.         <changefreq>monthly</changefreq>
  36.         <priority>0.8</priority>
  37.     </url>
  38.     <url>
  39.         <loc>https://2sweet.eu/pitaj-sladanu</loc>
  40.         <changefreq>monthly</changefreq>
  41.         <priority>0.6</priority>
  42.     </url>
  43.     <url>
  44.         <loc>https://2sweet.eu/kontakt</loc>
  45.         <changefreq>monthly</changefreq>
  46.         <priority>0.7</priority>
  47.     </url>
  48.     {% for article in articles %}
  49.     <url>
  50.         <loc>https://2sweet.eu/novosti/{{ article.slug }}</loc>
  51.         <lastmod>{{ article.updatedAt|date('Y-m-d') }}</lastmod>
  52.         <changefreq>monthly</changefreq>
  53.         <priority>0.6</priority>
  54.     </url>
  55.     {% endfor %}
  56.     {% for album in albums %}
  57.     <url>
  58.         <loc>https://2sweet.eu/galerija/{{ album.slug }}</loc>
  59.         <lastmod>{{ album.createdAt|date('Y-m-d') }}</lastmod>
  60.         <changefreq>monthly</changefreq>
  61.         <priority>0.5</priority>
  62.     </url>
  63.     {% endfor %}
  64. </urlset>