diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2013-09-15 10:45:41 -0700 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2013-09-15 10:45:41 -0700 |
| commit | f23d4c09210e8bf34e1f51d1e196e784ff9979d0 (patch) | |
| tree | 4dbfbd5c9407d3b74dd4710c0b6cf81bb6672673 /sitemap.xml | |
| parent | two new drafts articles (diff) | |
| download | lumberjaph-f23d4c09210e8bf34e1f51d1e196e784ff9979d0.tar.gz | |
Another big layout/design change.
Diffstat (limited to 'sitemap.xml')
| -rw-r--r-- | sitemap.xml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/sitemap.xml b/sitemap.xml index 47e9aa5..94768a8 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,15 +1,20 @@ --- layout: nil --- -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="utf-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> - <url> - <loc>{{ site.url }}</loc> - </url> - - {% for post in site.posts %} - <url> - <loc>{{ site.url }}{{ post.url }}</loc> - </url> - {% endfor %} -</urlset>
\ No newline at end of file +<url> +<loc>http://lumberjaph.net/</loc> +<lastmod>{{ site.time | date_to_xmlschema }}</lastmod> +<changefreq>weekly</changefreq> +<priority>1.0</priority> +</url> +{% for post in site.posts %} +<url> +<loc>http://lumberjaph.net{{ post.url }}</loc> +<lastmod>{{ post.date | date_to_xmlschema }}</lastmod> +<changefreq>monthly</changefreq> +<priority>0.9</priority> +</url> +{% endfor %} +</urlset> |
