aboutsummaryrefslogtreecommitdiff
path: root/sitemap.xml
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-05-17 18:22:27 -0400
committerGravatar Barry Clark <barry@barryclark.co> 2014-05-17 18:22:27 -0400
commit0340970f4e3954fa307a524a5d8099795ef0f3a3 (patch)
tree20487bceaac100cf88ea41381ec0bcd1fabecd9d /sitemap.xml
parent6db3f0bccaea32ae26f60094c1e92eb240d2f9c8 (diff)
downloadkompetenzbolzen.github.io-0340970f4e3954fa307a524a5d8099795ef0f3a3.tar.gz
Added sitemap.xml
Diffstat (limited to 'sitemap.xml')
-rw-r--r--sitemap.xml56
1 files changed, 12 insertions, 44 deletions
diff --git a/sitemap.xml b/sitemap.xml
index 15d799f..4b3a4d4 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1,52 +1,20 @@
---
-layout: none
-sitemap:
- priority: 0.7
- changefreq: monthly
- lastmod: 2013-11-16T10:17:00-05:00
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
- <url>
- <loc>{{ site.url }}/</loc>
- <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
- <changefreq>weekly</changefreq>
- <priority>1.0</priority>
- </url>
- {% for post in site.posts %}
+ {% for post in site.posts %}
<url>
- <loc>{{ site.url }}{{ post.url }}</loc>
- {% if post.lastmod == null %}
- <lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
- {% else %}
- <lastmod>{{ post.lastmod | date_to_xmlschema }}</lastmod>
- {% endif %}
- <changefreq>monthly</changefreq>
- <priority>0.5</priority>
+ <loc>{{ site.url }}{{ post.url | remove: 'index.html' }}</loc>
+ </url>
+ {% endfor %}
+
+ {% for page in site.pages %}
+ {% if page.layout != nil %}
+ {% if page.layout != 'redirect' %}
+ <url>
+ <loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
</url>
- {% endfor %}
- {% for page in site.pages %}
- <url>
- <loc>{{ site.url }}{{ page.url }}</loc>
- {% if page.sitemap.lastmod %}
- <lastmod>{{ page.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
- {% elsif page.lastmod %}
- <lastmod>{{ page.lastmod | date: "%Y-%m-%d" }}</lastmod>
- {% elsif page.date %}
- <lastmod>{{ page.date | date: "%Y-%m-%d" }}</lastmod>
- {% else %}
- <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
- {% endif %}
- {% if page.sitemap.changefreq %}
- <changefreq>{{ page.sitemap.changefreq }}</changefreq>
- {% else %}
- <changefreq>monthly</changefreq>
{% endif %}
- {% if page.sitemap.priority %}
- <priority>{{ page.sitemap.priority }}</priority>
- {% else %}
- <priority>0.3</priority>
{% endif %}
- </url>
- {% endfor %}
-</urlset>
+ {% endfor %}
+</urlset> \ No newline at end of file