-
Notifications
You must be signed in to change notification settings - Fork 58
/
sitemap.xml
77 lines (77 loc) · 2.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for spec in site.intent_specs %}
{% unless spec.published == false %}
<url>
<loc>{{ site.url }}{{ spec.url }}</loc>
{% if spec.sitemap.lastmod %}
<lastmod>{{ spec.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{% elsif spec.date %}
<lastmod>{{ spec.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{% endif %}
{% if spec.sitemap.changefreq %}
<changefreq>{{ spec.sitemap.changefreq }}</changefreq>
{% else %}
<changefreq>monthly</changefreq>
{% endif %}
{% if spec.sitemap.priority %}
<priority>{{ spec.sitemap.priority }}</priority>
{% else %}
<priority>0.5</priority>
{% endif %}
</url>
{% endunless %}
{% endfor %}
{% for page in site.pages %}
{% unless page.sitemap.exclude == "yes" %}
<url>
<loc>{{ site.url }}{{ page.url | remove: "index.html" }}</loc>
{% if page.sitemap.lastmod %}
<lastmod>{{ page.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{% elsif page.date %}
<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{% endif %}
{% if page.sitemap.changefreq %}
<changefreq>{{ page.sitemap.changefreq }}</changefreq>
{% else %}
<changefreq>monthly</changefreq>
{% endif %}
{% if page.sitemap.priority %}
<priority>{{ page.sitemap.priority }}</priority>
{% else %}
<priority>0.3</priority>
{% endif %}
</url>
{% endunless %}
{% endfor %}
{% for app in site.apps %}
{% unless app.sitemap.exclude == "yes" %}
<url>
<loc>{{ site.url }}{{ app.url | remove: "index.html" }}</loc>
{% if app.sitemap.lastmod %}
<lastmod>{{ app.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{% elsif app.date %}
<lastmod>{{ app.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{% endif %}
{% if app.sitemap.changefreq %}
<changefreq>{{ app.sitemap.changefreq }}</changefreq>
{% else %}
<changefreq>monthly</changefreq>
{% endif %}
{% if app.sitemap.priority %}
<priority>{{ app.sitemap.priority }}</priority>
{% else %}
<priority>0.3</priority>
{% endif %}
</url>
{% endunless %}
{% endfor %}
</urlset>