-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
67 lines (66 loc) · 3.18 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
---
sitemap:
exclude: 'yes'
---
<?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 post in site.posts -%}
{% unless post.published == false %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
{% if post.sitemap.lastmod %}
<lastmod>{{ post.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{%- elsif post.date -%}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{%- else -%}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{%- endif -%}
{% if post.sitemap.changefreq %}
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
{% else %}
{%- comment -%}<changefreq>monthly</changefreq> {%- endcomment -%}
{%- endif -%}
{% if post.sitemap.priority %}
<priority>{{ post.sitemap.priority }}</priority>
{% else %}
<priority>0.5</priority>
{% endif %}
</url>
{%- endunless -%}
{% endfor %}
{%- assign finished = ',' | split: ',' -%}
{%- for page in site.pages -%}
{%- assign same_pages = site.pages | where: "ref", page.ref | sort: 'lang' -%}
{%- assign alreadyFinished = finished | where_exp: 'item', 'item.ref == page.ref' -%}
{%- unless page.sitemap.exclude == "yes" or page.name == "feed.xml" -%}
{%- if alreadyFinished.size == 0 -%}
{% assign finished = finished | push: page %}
<url>
<loc>{{ site.url | append: page.url | remove: "index.html" }}</loc>
{%- for lngPage in same_pages -%}
{% unless lngPage.redirect.to or lngPage.sitemap.exclude =="yes" or page.ref == "default_ref" %}
<xhtml:link rel="alternate" hreflang="{{ lngPage.lang }}" href="{{ site.url | append: lngPage.url | remove: "index.html" }}" />
{%- endunless -%}
{% endfor %}
{% 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 -%}
{%- comment -%} <changefreq>monthly</changefreq> {%- endcomment -%}
{% endif %}
{%- if page.sitemap.priority -%}
<priority>{{ page.sitemap.priority }}</priority>
{%- else -%}
<priority>0.7</priority>
{%- endif -%}
</url>
{%- endif -%}
{%- endunless -%}
{% endfor %}
</urlset>