summaryrefslogtreecommitdiff
path: root/sitemap.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sitemap.xml27
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>