-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
33 lines (32 loc) · 1.06 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
---
layout:
---
<?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 page in site.pages -%}
{%- if page.url contains '.xml' or page.url contains 'assets' -%}{%- else -%}
<url>
<loc>{{ site.url }}{{ page.url }}</loc>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
{%- endif -%}
{%- endfor -%}
{%- for page in site.posts -%}
<url>
<loc>{{ site.url }}{{ page.url | replace: 'index.html', '' }}</loc>
<changefreq>monthly</changefreq>
<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>
<priority>1.0</priority>
</url>
{%- endfor -%}
{%- assign tags = site.posts | map: 'tags' | uniq -%}
{%- for tag in tags -%}
<url>
<loc>{{ site.url }}/tags/{{ tag | xml_escape }}</loc>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
{%- endfor -%}
</urlset>