-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathsitemap.xml
More file actions
26 lines (26 loc) · 864 Bytes
/
sitemap.xml
File metadata and controls
26 lines (26 loc) · 864 Bytes
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
---
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
{% assign all_pages = site.pages | sort: 'updatedAt' | reverse %}
{% for post in all_pages %}
<url>
<loc>https://www.retroreversing.com{{ post.url }}</loc>
<lastmod>{{ post.updatedAt }}</lastmod>
<changefreq>daily</changefreq>
{% if post.priority %}
<priority>{{ post.priority }}</priority>
{% else %}
<priority>0.5</priority>
{% endif %}
{% if post.image %}
<image:image>
<image:loc>https://www.retroreversing.com{{ post.image }}</image:loc>
<image:caption>{{ post.title | escape }} - RetroReversing</image:caption>
</image:image>
{% endif %}
</url>
{% endfor %}
</urlset>