1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-10 04:59:51 +02:00

Use *jekyll-sitemap* plugin for sitemap

This commit is contained in:
Pat Hawks 2014-05-06 18:34:22 -07:00
parent 1b7cfc9724
commit 0dbb5bfa8d
2 changed files with 3 additions and 30 deletions

View File

@ -75,3 +75,6 @@ exclude:
- README.md
- script
- bundle
gems:
- jekyll-sitemap

View File

@ -1,30 +0,0 @@
---
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.pages %}
{% if page.layout != "nil" %}
<url>
<loc>{{ site.url }}{{ page.url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
{% endif %}
{% endfor %}
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
{% endfor %}
</urlset>