Merge pull request #229 from github/chat-slide-tweak
[another_project.git] / sitemap.xml
1 ---
2 layout: nil
3 ---
4 <?xml version="1.0" encoding="UTF-8"?>
5 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
6
7   <!--  Homepage -->
8   <url>
9     <loc>http://{{ site.domain }}/</loc>
10     <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
11     <changefreq>daily</changefreq>
12                 <priority>1.0</priority>
13   </url>
14
15   {% for page in site.posts %}
16   <url>
17     <loc>http://{{ site.domain }}{{ page.url }}</loc>
18     {% if page.last_updated %}
19     <lastmod>{{ page.last_updated | date: "%Y-%m-%d" }}</lastmod>
20     {% elsif page.date %}
21     <lastmod>{{ page.date | date: "%Y-%m-%d" }}</lastmod>
22     {% else %}
23     <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
24     {% endif %}
25   </url>
26   {% endfor %}
27
28   {% for page in site.html_pages %}
29   <url>
30     <loc>http://{{ site.domain }}{{ page.url }}</loc>
31     {% if page.last_updated %}
32     <lastmod>{{ page.last_updated | date: "%Y-%m-%d" }}</lastmod>
33     {% elsif page.date %}
34     <lastmod>{{ page.date | date: "%Y-%m-%d" }}</lastmod>
35     {% else %}
36     <lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
37     {% endif %}
38     {% if page.changefreq %}<changefreq>{{ page.changefreq }}</changefreq>{% endif %}
39     {% if page.priority %}<priority>{{ page.priority }}</priority>{% endif %}
40   </url>
41   {% endfor %}
42
43 </urlset>