-
Notifications
You must be signed in to change notification settings - Fork 32
/
sitemap.xml
27 lines (22 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
---
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" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1" xmlns:geo="http://www.google.com/geo/schemas/sitemap/1.0" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:pagemap="http://www.google.com/schemas/sitemap-pagemap/1.0" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>{{site.production_url}}/blog/</loc>
</url>
<url>
<loc>{{site.production_url}}/books/</loc>
</url>
<url>
<loc>{{site.production_url}}/hire/</loc>
</url>
{% for post in site.posts %}
{% if post.blog == true %}
<url>
<loc>{{site.production_url}}{{ post.url }}</loc>
</url>
{%endif%}
{% endfor %}
</urlset>