~nchohan/appscale/zk3.3.4

« back to all changes in this revision

Viewing changes to AppServer/lib/django/django/contrib/sitemaps/templates/sitemap.xml

  • Committer: Navraj Chohan
  • Date: 2009-03-28 01:14:04 UTC
  • Revision ID: nchohan@cs.ucsb.edu-20090328011404-42m1w6yt60m6yfg3
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 
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
   </url>
 
11
{% endfor %}
 
12
{% endspaceless %}
 
13
</urlset>