forked from ag_kommunikation/webseite
10 lines
331 B
XML
10 lines
331 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{%- for page in [site.root] if page != this recursive %}
|
|
{%- if not page.hide_from_global_index %}
|
|
<url><loc>{{ page|url(external=true) }}</loc></url>
|
|
{{- loop(page.children) }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
</urlset>
|