mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2024-11-15 02:19:02 +00:00
23 lines
632 B
XML
23 lines
632 B
XML
---
|
|
layout: nil
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>{{ site.url }}</loc>
|
|
</url>
|
|
|
|
{% for post in site.posts %}
|
|
<url>
|
|
<loc>{{ site.url }}{{ post.url }}</loc>
|
|
<lastmod>{% if post.modified %}{{ post.modified | to_xmlschema }}{% else %}{{ post.date | to_xmlschema }}{% endif %}</lastmod>
|
|
</url>
|
|
{% endfor %}
|
|
|
|
{% for page in site.pages %}
|
|
<url>
|
|
<loc>{{ site.url }}{{ page.url }}</loc>
|
|
<lastmod>{{ site.time | to_xmlschema }}</lastmod>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset> |