-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
34 lines (31 loc) · 946 Bytes
/
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
27
28
29
30
31
32
33
34
---
layout: none
search: exclude
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
{% unless post.search == "exclude" %}
<url>
<loc>{{site.url}}/docs{{post.url}}</loc>
<lastmod>2021-08-08T08:21:53+00:00</lastmod>
<changefreq>always</changefreq>
<priority>1.0000</priority>
</url>
{% endunless %}
{% endfor %}
{% for page in site.pages %}
{% unless page.search == "exclude" %}
<url>
<loc>{{site.url}}/docs{{ page.url}}</loc>
<lastmod>2021-08-08T08:21:53+00:00</lastmod>
<changefreq>always</changefreq>
<priority>1.0000</priority>
</url>
{% endunless %}
{% endfor %}
</urlset>