-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
155 lines (155 loc) · 8.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
---
layout: null
permalink: /sitemap.xml
---
<?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:vedalia="https://docs.vantainteractive.com/en/vedalia">
{% assign content = post.content | replace: "<pre>", "" | replace: "</pre>", "" | escape %}
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
{% if post.lastmod == null %}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ post.lastmod | date_to_xmlschema }}</lastmod>
{% endif %}
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<vedalia:layout>{{ post.layout | escape }}</vedalia:layout>
<vedalia:type>{{ post.type | escape }}</vedalia:type>
<vedalia:lang>{{ post.lang | escape }}</vedalia:lang>
<vedalia:locale>{{ post.locale | escape }}</vedalia:locale>
<vedalia:title>{{ post.title | escape }}</vedalia:title>
<vedalia:description>{{ post.description | escape }}</vedalia:description>
<vedalia:date>{{ post.date | date_to_xmlschema }}</vedalia:date>
<vedalia:indicator_type>{{ post.indicator_type | escape }}</vedalia:indicator_type>
<vedalia:indicator_class>{{ post.indicator_class | escape }}</vedalia:indicator_class>
<vedalia:indicator_text>{{ post.indicator_text | escape }}</vedalia:indicator_text>
<vedalia:indicator_text_expanded>{{ post.indicator_text_onpage | escape }}</vedalia:indicator_text_expanded>
<vedalia:thumbnail_url>{{ post.image_banner_link | escape }}</vedalia:thumbnail_url>
<vedalia:thumbnail_alt>{{ post.image_banner_alt | escape }}</vedalia:thumbnail_alt>
<vedalia:categories>
{% for category in post.categories %}
<vedalia:category>{{ category }}</vedalia:category>
{% endfor %}
</vedalia:categories>
<vedalia:tags>
{% for tag in post.tags %}
<vedalia:tag>{{ tag }}</vedalia:tag>
{% endfor %}
</vedalia:tags>
<vedalia:content>{{ post.content | escape }}</vedalia:content>
</url>
{% endfor %}
{% for page in site.pages %}
{% unless page.url contains "/404" or page.url == "/" or page.url == "/feed.xml" or page.url == "/sitemap.xml" or page.url contains "/iframe" or page.url contains "/search" or page.url contains "/portfolio.html" or page.url contains "/posts.html" or page.url contains "/_layouts/" or page.url contains "/assets/" or page.url contains "/wiki/OR8/" or page.url contains "/tags/" or page.url contains "/categories/" %}
<url>
<loc>{{ site.url }}{{ page.url }}</loc>
{% if page.lastmod == null %}
<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ page.lastmod | date_to_xmlschema }}</lastmod>
{% endif %}
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<vedalia:layout>{{ page.layout | escape }}</vedalia:layout>
<vedalia:type>{{ page.type | escape }}</vedalia:type>
<vedalia:lang>{{ page.lang | escape }}</vedalia:lang>
<vedalia:locale>{{ page.locale | escape }}</vedalia:locale>
<vedalia:title>{{ page.title | escape }}</vedalia:title>
<vedalia:description>{{ page.description | escape }}</vedalia:description>
<vedalia:date>{{ page.date | date_to_xmlschema }}</vedalia:date>
<vedalia:indicator_type>{{ page.indicator_type | escape }}</vedalia:indicator_type>
<vedalia:indicator_class>{{ page.indicator_class | escape }}</vedalia:indicator_class>
<vedalia:indicator_text>{{ page.indicator_text | escape }}</vedalia:indicator_text>
<vedalia:indicator_text_expanded>{{ page.indicator_text_onpage | escape }}</vedalia:indicator_text_expanded>
<vedalia:thumbnail_url>{{ page.image_banner_link | escape }}</vedalia:thumbnail_url>
<vedalia:thumbnail_alt>{{ page.image_banner_alt | escape }}</vedalia:thumbnail_alt>
<vedalia:categories>
{% for category in page.categories %}
<vedalia:category>{{ category }}</vedalia:category>
{% endfor %}
</vedalia:categories>
<vedalia:tags>
{% for tag in page.tags %}
<vedalia:tag>{{ tag }}</vedalia:tag>
{% endfor %}
</vedalia:tags>
<vedalia:content>{{ page.content | escape }}</vedalia:content>
</url>
{% endunless %}
{% endfor %}
{% assign videos_page = site.pages | where: "title", "AlexTECPlayz videos" | first %}
{% if videos_page %}
{% for video in videos_page.videos %}
<url>
<loc>{{ video.url }}</loc>
<lastmod>{{ video.date | date_to_xmlschema }}</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
<vedalia:layout>{{ video.layout | escape }}</vedalia:layout>
<vedalia:type>{{ video.type | escape }}</vedalia:type>
<vedalia:lang>{{ video.lang | escape }}</vedalia:lang>
<vedalia:locale>{{ video.locale | escape }}</vedalia:locale>
<vedalia:title>{{ video.title | escape }}</vedalia:title>
<vedalia:description>{{ video.description | escape }}</vedalia:description>
<vedalia:date>{{ video.date | date_to_xmlschema }}</vedalia:date>
<vedalia:indicator_type>{{ video.indicator_type | escape }}</vedalia:indicator_type>
<vedalia:indicator_class>{{ video.indicator_class | escape }}</vedalia:indicator_class>
<vedalia:indicator_text>{{ video.indicator_text | escape }}</vedalia:indicator_text>
<vedalia:indicator_text_expanded>{{ video.indicator_text_onpage | escape }}</vedalia:indicator_text_expanded>
<vedalia:thumbnail_url>{{ video.image_banner_link | escape }}</vedalia:thumbnail_url>
<vedalia:thumbnail_alt>{{ video.image_banner_alt | escape }}</vedalia:thumbnail_alt>
<vedalia:categories>
{% for category in video.categories %}
<vedalia:category>{{ category }}</vedalia:category>
{% endfor %}
</vedalia:categories>
<vedalia:tags>
{% for tag in video.tags %}
<vedalia:tag>{{ tag }}</vedalia:tag>
{% endfor %}
</vedalia:tags>
<vedalia:content>{{ video.content | escape }}</vedalia:content>
</url>
{% endfor %}
{% endif %}
{% assign notes_page = site.pages | where: "title", "Notes" | first %}
{% if notes_page %}
{% for note in notes_page.notes %}
<url>
<loc>{{ note.url }}</loc>
<lastmod>{{ note.date | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<vedalia:layout>{{ note.layout | escape }}</vedalia:layout>
<vedalia:type>{{ note.type | escape }}</vedalia:type>
<vedalia:lang>{{ note.lang | escape }}</vedalia:lang>
<vedalia:locale>{{ note.locale | escape }}</vedalia:locale>
<vedalia:title>{{ note.title | escape }}</vedalia:title>
<vedalia:description>{{ note.description | escape }}</vedalia:description>
<vedalia:date>{{ note.date | date_to_xmlschema }}</vedalia:date>
<vedalia:indicator_type>{{ note.indicator_type | escape }}</vedalia:indicator_type>
<vedalia:indicator_class>{{ note.indicator_class | escape }}</vedalia:indicator_class>
<vedalia:indicator_text>{{ note.indicator_text | escape }}</vedalia:indicator_text>
<vedalia:indicator_text_expanded>{{ note.indicator_text_onpage | escape }}</vedalia:indicator_text_expanded>
<vedalia:thumbnail_url>{{ note.image_banner_link | escape }}</vedalia:thumbnail_url>
<vedalia:thumbnail_alt>{{ note.image_banner_alt | escape }}</vedalia:thumbnail_alt>
<vedalia:categories>
{% for category in note.categories %}
<vedalia:category>{{ category }}</vedalia:category>
{% endfor %}
</vedalia:categories>
<vedalia:tags>
{% for tag in note.tags %}
<vedalia:tag>{{ tag }}</vedalia:tag>
{% endfor %}
</vedalia:tags>
<vedalia:content>{{ note.content | escape }}</vedalia:content>
</url>
{% endfor %}
{% endif %}
</urlset>