diff options
| author | Mark Otto <[email protected]> | 2014-03-09 22:01:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-09 22:01:38 -0700 |
| commit | ccb17f110de8e90773a6ebfda9e35306d625dc78 (patch) | |
| tree | ad1bc7e6bc41eb9805b6a2531c5c37df7a92cb87 /docs/sitemap.xml | |
| parent | bdd7651e323a93a4e3d207463451dd374b0a70fa (diff) | |
| parent | b1f71e5292017aca978fabb74d256989e1eeea07 (diff) | |
| download | bootstrap-ccb17f110de8e90773a6ebfda9e35306d625dc78.tar.xz bootstrap-ccb17f110de8e90773a6ebfda9e35306d625dc78.zip | |
Merge branch 'master' into fix-8869
Diffstat (limited to 'docs/sitemap.xml')
| -rw-r--r-- | docs/sitemap.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/sitemap.xml b/docs/sitemap.xml new file mode 100644 index 000000000..7aaf56c9b --- /dev/null +++ b/docs/sitemap.xml @@ -0,0 +1,22 @@ +--- +layout: nil +--- +<?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"> + <url> + <loc>{{ site.url }}/</loc> + <lastmod>{{ site.time | date_to_xmlschema }}</lastmod> + <changefreq>daily</changefreq> + <priority>1.0</priority> + </url> + {% for page in site.html_pages %} + {% if page.layout != "home" %} + <url> + <loc>{{ site.url }}{{ page.url }}</loc> + <lastmod>{{ site.time | date_to_xmlschema }}</lastmod> + <changefreq>weekly</changefreq> + <priority>0.7</priority> + </url> + {% endif %} + {% endfor %} +</urlset> |
