removed tabs and made into a better example for sitemap times

This commit is contained in:
Kris Brown 2010-02-26 22:07:26 +00:00
parent 4fd2b54a7d
commit cd946a587b
1 changed files with 17 additions and 17 deletions

View File

@ -7,7 +7,7 @@ layout: nil
<url>
<loc>http://example.com</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
@ -15,7 +15,7 @@ layout: nil
{% for post in site.posts %}
<url>
<loc>http://example.com/{{ post.url }}/</loc>
<lastmod>{{ site.time }}</lastmod>
<lastmod>{{ post.date | date: "%Y-%m-%d" }}</lastmod>
<changefreq>monthly</changefreq>
<priority>0.2</priority>
</url>