{# On boucle sur les URLs #} {% for url in urls %} {# On vérifie si le nom d'hôte (hostname) est présent dans l'url #} {# Si il n'y est pas, on l'ajoute #} {% if url.loc|replace({hostname:''}) == url.loc %} {{ hostname }}{{ url.loc }} {% else %} {{ url.loc }} {% endif %} {# Si il y a une date de modification #} {% if url.lastmod is defined %} {{url.lastmod}} {% endif %} {# Si il y a une fréquence de modification #} {% if url.changefreq is defined %} {{url.changefreq}} {% endif %} {# Si il y a une priorité #} {% if url.priority is defined %} {{url.priority}} {% endif %} {# Si il y a une image #} {% if url.image is defined and url.image is not empty %} {%if url.image.loc|replace({hostname:''}) == url.image.loc%}{{hostname}}{{url.image.loc}}{%else%}{{url.image.loc}}{%endif%} {{ url.image.title }} {% endif %} {% endfor %}