2023-03-29 23:59:28 +02:00
|
|
|
{% apply spaceless %}
|
2013-07-17 16:17:28 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
{% for board in boards %}
|
|
|
|
<url>
|
|
|
|
<loc>{{ settings.url ~ (config.board_path | format(board)) ~ config.file_index }}</loc>
|
|
|
|
</url>
|
|
|
|
{% endfor %}
|
|
|
|
{% for board, thread_list in threads %}
|
|
|
|
{% for thread in thread_list %}
|
|
|
|
<url>
|
2015-03-10 12:48:59 +01:00
|
|
|
<loc>{{ settings.url ~ (config.board_path | format(board)) ~ config.dir.res ~ link_for(thread) }}</loc>
|
2024-04-03 17:14:49 +02:00
|
|
|
<lastmod>{{ thread.lastmod | date('Y-m-d\\TH:i:s\Z') }}</lastmod>
|
2013-07-17 16:17:28 +02:00
|
|
|
<changefreq>{{ settings.changefreq }}</changefreq>
|
|
|
|
</url>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</urlset>
|
2023-03-29 23:59:28 +02:00
|
|
|
{% endapply %}
|