deblan.io-murph/core/Resources/views/site/sitemap/sitemap.xml.twig
Simon Vieille 40ed84dea3 init murph
Signed-off-by: Simon Vieille <simon@deblan.fr>
2021-03-24 19:10:26 +01:00

11 lines
306 B
Twig

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for item in items %}
<url>
<loc>{{ item.loc }}</loc>
<changefreq>{{ item.changefreq }}</changefreq>
<priority>{{ item.priority }}</priority>
</url>
{% endfor %}
</urlset>