18 lines
494 B
XML
Executable File
18 lines
494 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="www.sitemaps.org">
|
|
<url>
|
|
<loc>{{ base_url }}</loc>
|
|
<lastmod>2025.12.22</lastmod>
|
|
<changefreq>daily</changefreq>
|
|
<priority>1.0</priority>
|
|
</url>
|
|
{% for posts in posts %}
|
|
<url>
|
|
<loc>{{ base_url }}posts/{{ posts['id'] }}/</loc>
|
|
<lastmod>{{ posts['date'] }}</lastmod>
|
|
<changefreq>monthly</changefreq>
|
|
<priority>0.8</priority>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|