-
Notifications
You must be signed in to change notification settings - Fork 4
/
sitemap.xml
30 lines (29 loc) · 1.39 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
---
layout: null
title: sitemap
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
{% capture true_path %}{{ post.path }}{% endcapture %}
{% capture page_modified %}{{ true_path | git_mod }}{% endcapture %}
<url>
<loc>{{ site.url }}{{site.baseurl}}{{ post.url }}</loc>
<lastmod>{{ true_path | git_mod | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
{% endfor %}
{% for page in site.pages %}
{% capture true_path %}{{ page.path }}{% endcapture %}
{% capture page_modified %}{{ true_path | git_mod }}{% endcapture %}
{% if (((((page.layout != null and page.layout != 'search') and (page.layout != 'redirect' and page.title != 'sitemap')) and (page.title != 'Tags' and page.title != 'Categories')) and (page.title != 'Atom Feed' and page.title != 'search')) and page.title != 'All posts') %}
<url>
<loc>{{ site.url }}{{site.baseurl}}{{ page.url }}</loc>
<lastmod>{{ true_path | git_mod | date_to_xmlschema }}</lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
{% endif %}
{% endfor %}
</urlset>