forked from headjs/headjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
36 lines (35 loc) · 867 Bytes
/
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
---
baseUrl: http://headjs.com
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{ page.baseUrl }}</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/blog.html</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/documentation.html</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/download.html</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/resources.html</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/unit.html</loc>
</url>
<url>
<loc>{{ page.baseUrl }}/site/api/v1.00.html</loc>
</url>
<!-- http://davidensinger.com/2013/03/generating-a-sitemap-in-jekyll-without-a-plugin/ -->
{% for post in site.posts %}
<url>
<loc>{{ page.baseUrl }}{{ post.url }}</loc>
</url>
{% endfor %}
{% for page in site.pages %}
{% endfor %}
</urlset>