forked from DataTalksClub/datatalksclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
52 lines (51 loc) · 1.15 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
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{site.url}}/</loc>
</url>
<url>
<loc>{{site.url}}/people.html</loc>
</url>
<url>
<loc>{{site.url}}/articles.html</loc>
</url>
<url>
<loc>{{site.url}}/slack.html</loc>
</url>
<url>
<loc>{{site.url}}/events.html</loc>
</url>
<url>
<loc>{{site.url}}/books.html</loc>
</url>
<url>
<loc>{{site.url}}/podcast.html</loc>
</url>
{% for post in site.posts %}
<url>
<loc>{{site.url}}{{ post.url | remove: 'index.html' }}</loc>
</url>
{% endfor %}
{% for author in site.people %}
<url>
<loc>{{site.url}}{{ author.url }}</loc>
</url>
{% endfor %}
{% for book in site.books %}
<url>
<loc>{{site.url}}{{ book.url }}</loc>
</url>
{% endfor %}
{% for conf in site.conferences %}
<url>
<loc>{{site.url}}{{ conf.url }}</loc>
</url>
{% endfor %}
{% for p in site.podcast %}
<url>
<loc>{{site.url}}{{ p.url }}</loc>
</url>
{% endfor %}
</urlset>