-
Notifications
You must be signed in to change notification settings - Fork 3
/
sitemap.xml
36 lines (36 loc) · 2.05 KB
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
# From: http://davidensinger.com/2013/11/building-a-better-sitemap-xml-with-jekyll/
layout: null
sitemap:
exclude: 'yes'
---
<?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>monthly</changefreq>
<priority>1.0</priority>
</url>{% for post in site.posts %}{% unless post.published == false %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>{% if post.lastmod %}
<lastmod>{{ post.lastmod | date: "%Y-%m-%d" }}</lastmod>{% elsif post.date %}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>{% endif %}{% if post.changefreq %}
<changefreq>{{ post.changefreq }}</changefreq>{% else %}
<changefreq>monthly</changefreq>{% endif %}{% if post.priority %}
<priority>{{ post.priority }}</priority>{% else if post.tags contains featured %}
<priority>0.9</priority>{% else %}
<priority>0.7</priority>{% endif %}
</url>{% endunless %}{% endfor %}{% for page in site.html_pages %}{% unless page.sitemap_exclude == "yes" %}
<url>
<loc>{{ site.url }}{{ page.url | remove: "index.html" }}</loc>{% if page.lastmod %}
<lastmod>{{ page.lastmod | date: "%Y-%m-%d" }}</lastmod>{% elsif page.date %}
<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>{% endif %}{% if page.changefreq %}
<changefreq>{{ page.changefreq }}</changefreq>{% else %}
<changefreq>monthly</changefreq>{% endif %}{% if page.priority %}
<priority>{{ page.priority }}</priority>{% else %}
<priority>0.5</priority>{% endif %}
</url>{% endunless %}{% endfor %}
</urlset>