templates/Default/sitemap.xml.twig line 1

Open in your IDE?
  1. {% extends 'Default/menu.html.twig' %}
  2. {% block content %}
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <urlset
  5.       xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  6.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  7.       xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
  8.             http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
  9.     <url>
  10.       <loc>https://eau-mines.gouv.bj/</loc>
  11.       <lastmod>{{'now'|date('Y-m-d')}}</lastmod>
  12.       <priority>1.00</priority>
  13.     </url>
  14.     {% for o in menus %}
  15.     {% if o.href is defined and o.href %}
  16.     <url>
  17.       <loc>{{o.href}}</loc>
  18.       <lastmod>{{'now'|date('Y-m-d')}}</lastmod>
  19.       <priority>0.90</priority>
  20.     </url>
  21.     {% endif %}
  22.     {% if o.submenus is defined %}
  23.     {% for k in o.submenus %}
  24.     <url>
  25.       <loc>{{k.href}}</loc>
  26.       <lastmod>{{'now'|date('Y-m-d')}}</lastmod>
  27.       <priority>0.80</priority>
  28.     </url>
  29.     {% endfor %}
  30.     {% endif %}
  31.     {% endfor %}
  32. </urlset>
  33. {% endblock %}