pages/sitemap.xml

27 lines
690 B
XML
Raw Normal View History

2019-09-28 04:06:37 +00:00
---
layout: null
search: exclude
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in site.pages %}
<url>
<loc>https://millironx.com{{page.url}}</loc>
2019-09-28 04:06:37 +00:00
<lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
{% endfor %}
{% for post in site.posts %}
<url>
<loc>https://millironx.com{{post.url}}</loc>
2019-09-28 04:06:37 +00:00
<lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
{% endfor %}
</urlset>