27 lines
No EOL
690 B
XML
27 lines
No EOL
690 B
XML
---
|
|
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>
|
|
<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>
|
|
<lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
|
|
<changefreq>daily</changefreq>
|
|
<priority>0.5</priority>
|
|
</url>
|
|
{% endfor %}
|
|
|
|
</urlset> |