-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.xml
118 lines (107 loc) · 3.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
{% comment %}
######### Pages #########
{% endcomment %}
<url>
<loc>https://activation.la2050.org/</loc>
</url>
<url>
<loc>https://activation.la2050.org/about/</loc>
</url>
<url>
<loc>https://activation.la2050.org/submit/</loc>
</url>
<url>
<loc>https://activation.la2050.org/vote/</loc>
</url>
<url>
<loc>https://activation.la2050.org/timeline/</loc>
</url>
<url>
<loc>https://activation.la2050.org/faqs/</loc>
</url>
{% comment %}
######### Entries #########
{% endcomment %}
<url>
<loc>https://activation.la2050.org/entries/</loc>
</url>
<url>
<loc>https://activation.la2050.org/learn/</loc>
</url>
<url>
<loc>https://activation.la2050.org/create/</loc>
</url>
<url>
<loc>https://activation.la2050.org/play/</loc>
</url>
<url>
<loc>https://activation.la2050.org/connect/</loc>
</url>
<url>
<loc>https://activation.la2050.org/live/</loc>
</url>
{% comment %}
######### Finalists #########
{% endcomment %}
<url>
<loc>https://activation.la2050.org/finalists/</loc>
</url>
<url>
<loc>https://activation.la2050.org/learn/finalists/</loc>
</url>
<url>
<loc>https://activation.la2050.org/create/finalists/</loc>
</url>
<url>
<loc>https://activation.la2050.org/play/finalists/</loc>
</url>
<url>
<loc>https://activation.la2050.org/connect/finalists/</loc>
</url>
<url>
<loc>https://activation.la2050.org/live/finalists/</loc>
</url>
{% comment %}
######### Projects #########
{% endcomment %}
{% assign data_collection = site.collections | where: "label", "learn" | first %}
{% assign data_list = data_collection.docs %}
{% for project in data_list %}
<url>
<loc>https://activation.la2050.org{{ project.uri }}</loc>
</url>
{% endfor %}
{% assign data_collection = site.collections | where: "label", "create" | first %}
{% assign data_list = data_collection.docs %}
{% for project in data_list %}
<url>
<loc>https://activation.la2050.org{{ project.uri }}</loc>
</url>
{% endfor %}
{% assign data_collection = site.collections | where: "label", "play" | first %}
{% assign data_list = data_collection.docs %}
{% for project in data_list %}
<url>
<loc>https://activation.la2050.org{{ project.uri }}</loc>
</url>
{% endfor %}
{% assign data_collection = site.collections | where: "label", "connect" | first %}
{% assign data_list = data_collection.docs %}
{% for project in data_list %}
<url>
<loc>https://activation.la2050.org{{ project.uri }}</loc>
</url>
{% endfor %}
{% assign data_collection = site.collections | where: "label", "live" | first %}
{% assign data_list = data_collection.docs %}
{% for project in data_list %}
<url>
<loc>https://activation.la2050.org{{ project.uri }}</loc>
</url>
{% endfor %}
</urlset>