2008-09-08 13:19:28 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-11-21 00:32:40 +08:00
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
2006-09-27 00:27:24 +08:00
|
|
|
{% spaceless %}
|
2006-09-01 07:13:59 +08:00
|
|
|
{% for url in urlset %}
|
|
|
|
<url>
|
2008-09-08 13:19:28 +08:00
|
|
|
<loc>{{ url.location }}</loc>
|
2006-09-01 07:13:59 +08:00
|
|
|
{% if url.lastmod %}<lastmod>{{ url.lastmod|date:"Y-m-d" }}</lastmod>{% endif %}
|
|
|
|
{% if url.changefreq %}<changefreq>{{ url.changefreq }}</changefreq>{% endif %}
|
|
|
|
{% if url.priority %}<priority>{{ url.priority }}</priority>{% endif %}
|
|
|
|
</url>
|
|
|
|
{% endfor %}
|
2006-09-27 00:27:24 +08:00
|
|
|
{% endspaceless %}
|
2006-09-01 07:13:59 +08:00
|
|
|
</urlset>
|