-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.xml
50 lines (48 loc) · 1.57 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{"/" | absolute_url}}</loc>
<lastmod>{{site.time | date_to_xmlschema}}</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
{% assign pages = site.pages | where_exp: 'page', 'page.title' %}
{% for page in pages %}
<!-- [PAGE] {{page.title}} -->
<url>
<loc>{{page.url | absolute_url}}</loc>
<lastmod>{{page.date | default: site.time | date_to_xmlschema}}</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
{% endfor %}
{% for item in site.guides %}
<!-- [GUIDE] {{item.title}} -->
<url>
<loc>{{item.url | absolute_url}}</loc>
<lastmod>{{item.date | default: site.time | date_to_xmlschema}}</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
{% endfor %}
{% for post in site.posts %}
<!-- [POST] {{post.title}} -->
<url>
<loc>{{post.url | absolute_url}}</loc>
<lastmod>{{post.date | default: site.time | date_to_xmlschema}}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
{% endfor %}
{% for item in site.bom %}
<!-- [BOM] {{item.title}} -->
<url>
<loc>{{item.url | absolute_url}}</loc>
<lastmod>{{item.date | default: site.time | date_to_xmlschema}}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
{% endfor %}
</urlset>