2007-11-14 20:58:53 +08:00
|
|
|
{% autoescape off %}<?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>
|
|
|
|
<loc>{{ url.location|escape }}</loc>
|
|
|
|
{% 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>
|
2007-11-14 20:58:53 +08:00
|
|
|
{% endautoescape %}
|