generated from just-the-docs/just-the-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
26 lines (26 loc) · 1.24 KB
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout:
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
{%- for lang in site.languages -%}
{%- for node in site.pages -%}
{%- unless site.exclude_from_localization contains node.path -%}
{% if node.layout %}
<url>
<loc>{%- if lang == site.default_lang -%}{{ node.url | absolute_url }}{%- else -%}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{%- endif -%}</loc>
<lastmod>{%- if node.last_modified_at -%}{{ node.last_modified_at | date_to_xmlschema }}{%- else -%}{{ node.date | date_to_xmlschema }}{%- endif -%}</lastmod>
</url>
{%- endif -%}
{%- endunless -%}
{%- endfor -%}
{%- for collection in site.collections -%}
{% for node in site[collection.label] %}
<url>
<loc>{%- if lang == site.default_lang -%}{{ node.url | absolute_url }}{%- else -%}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{%- endif -%}</loc>
<lastmod>{%- if node.last_modified_at -%}{{ node.last_modified_at | date_to_xmlschema }}{%- else -%}{{ node.date | date_to_xmlschema }}{%- endif -%}</lastmod>
</url>
{%- endfor -%}
{%- endfor -%}
{% endfor %}
</urlset>