PageRenderTime 32ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/gis/templates/gis/sitemaps/geo_sitemap.xml

https://code.google.com/p/mango-py/
XML | 17 lines | 17 code | 0 blank | 0 comment | 0 complexity | 4e3795802a22dc46afc97a6b95ddac93 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. {% autoescape off %}<?xml version="1.0" encoding="UTF-8"?>
  2. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:geo="http://www.google.com/geo/schemas/sitemap/1.0">
  3. {% spaceless %}
  4. {% for url in urlset %}
  5. <url>
  6. <loc>{{ url.location|escape }}</loc>
  7. {% if url.lastmod %}<lastmod>{{ url.lastmod|date:"Y-m-d" }}</lastmod>{% endif %}
  8. {% if url.changefreq %}<changefreq>{{ url.changefreq }}</changefreq>{% endif %}
  9. {% if url.priority %}<priority>{{ url.priority }}</priority>{% endif %}
  10. {% if url.geo_format %}<geo:geo>
  11. <geo:format>{{ url.geo_format }}</geo:format>
  12. </geo:geo>{% endif %}
  13. </url>
  14. {% endfor %}
  15. {% endspaceless %}
  16. </urlset>
  17. {% endautoescape %}