<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for locale in locales %}
<sitemap>
<loc>{{ url('KunstmaanSitemapBundle_sitemap', {'locale': locale, '_format': 'xml'}) }}</loc>
</sitemap>
{% endfor %}
{% if extraSitemaps is defined and extraSitemaps is not empty %}
{% for sitemap in extraSitemaps %}
<sitemap>
<loc>{{ sitemap.url }}</loc>
{% if sitemap.lastModified %}
<lastmod>{{ sitemap.lastModified|date('Y-m-d') }}</lastmod>
{% endif %}
</sitemap>
{% endfor %}
{% endif %}
</sitemapindex>