-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
27 lines (25 loc) · 954 Bytes
/
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
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in site.html_pages %}
<url>
<loc>{{site.url}}{{ page.url | remove: 'index.html' }}</loc>
{% if page.changefreq %}<changefreq>{{ page.changefreq }}</changefreq>{% endif %}
{% if page.priority %}<priority>{{ page.priority }}</priority>{% endif %}
</url>
{% endfor %}
<url><loc>{{site.url}}/apps/imagemap/</loc></url>
<url><loc>{{site.url}}/apps/multiplication/</loc></url>
<url><loc>{{site.url}}/apps/ticketbooking/</loc></url>
<url><loc>{{site.url}}/apps/colorpicker/</loc></url>
{% for post in site.posts %}
<url>
<loc>{{site.url}}{{ post.url }}</loc>
<lastmod>{{ post.date | date: "%Y-%m-%d" }}</lastmod>
{% if post.changefreq %}<changefreq>{{ post.changefreq }}</changefreq>{% endif %}
{% if post.priority %}<priority>{{ post.priority }}</priority>{% endif %}
</url>
{% endfor %}
</urlset>