-
Notifications
You must be signed in to change notification settings - Fork 1
/
sitemap.xml
52 lines (51 loc) · 1.52 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
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://modelism.github.io/</loc>
<lastmod>2015-01-04T03:12:53+02:00</lastmod>
<priority>1.0</priority>
</url>
<url>
<loc>http://modelism.github.io/diy/</loc>
<lastmod>2015-01-04T03:12:53+02:00</lastmod>
<priority>0.8</priority>
</url>
<url>
<loc>http://modelism.github.io/handbook/</loc>
<lastmod>2015-01-04T03:12:53+02:00</lastmod>
<priority>0.8</priority>
</url>
<url>
<loc>http://modelism.github.io/news/</loc>
<lastmod>2015-01-21T03:12:53+02:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>http://modelism.github.io/events/</loc>
<lastmod>2015-03-12T08:12:53+02:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>http://modelism.github.io/community/</loc>
<lastmod>2015-01-28T07:11:04+02:00</lastmod>
<priority>0.8</priority>
</url>
{% for post in site.posts %}
{% if post.status == "published" %}
<url>
<loc>http://modelism.github.io{{ post.url }}</loc>
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{% if post.priority %}
<priority>{{ post.priority }}</priority>
{% else %}
<priority>0.5</priority>
{% endif %}
</url>
{% endif %}
{% endfor %}
</urlset>