-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsitemap.xml
27 lines (27 loc) · 1.01 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
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{ site.url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>{%
for post in site.posts %}{% if post.noindex != true %}
<url>
<loc>{{site.url}}{{ post.url | remove: 'index.html' }}</loc>
<lastmod>{% if post.updated == null %}{{ post.date | date: '%Y-%m-%d' }}{% else %}{{ post.updated | date: '%Y-%m-%d' }}{% endif %}</lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>{%
endif %}{% endfor %}{%
for page in site.pages %}{%
if page.layout != nil and page.layout != 'feed' and page.url != '/' and page.noindex != true %}
<url>
<loc>{{site.url}}{{ page.url | remove: 'index.html' }}</loc>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>{%
endif %}{% endfor %}
</urlset>