mirror of
https://github.com/wahyd4/blog.git
synced 2026-08-08 20:55:37 +10:00
14 lines
392 B
XML
14 lines
392 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{% for post in posts %}
|
|
<url>
|
|
<loc>{{ post.permalink | uriencode }}</loc>
|
|
{% if post.updated %}
|
|
<lastmod>{{ post.updated.toISOString() }}</lastmod>
|
|
{% elif post.date %}
|
|
<lastmod>{{ post.date.toISOString() }}</lastmod>
|
|
{% endif %}
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|