istio.io/sitemap.xml

30 lines
721 B
XML

---
title : "Sitemap"
sitemap_exclude: y
---
<?xml version="1.0" encoding="UTF-8"?>
{% assign istio = "https://istio.io" %}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
<url>
<loc>{{istio}}{{ post.url | remove: 'index.html' }}</loc>
</url>
{% endfor %}
{% for page in site.pages %}
{% if page.sitemap_exclude != 'y' %}
<url>
<loc>{{istio}}{{ page.url | remove: 'index.html' }}</loc>
</url>
{% endif %}
{% endfor %}
{% for page in site.docs %}
{% if page.sitemap_exclude != 'y' %}
<url>
<loc>{{istio}}{{ page.url | remove: 'index.html' }}</loc>
</url>
{% endif %}
{% endfor %}
</urlset>