1
0
Fork 0

Use a sitemap auto generator

And fix the ATOM feeds for categories
This commit is contained in:
Luca Beltrame 2015-05-24 10:22:01 +02:00
parent 31fd8cf1ba
commit 897a130e29
2 changed files with 5 additions and 55 deletions

View file

@ -219,7 +219,7 @@ category_archive:
# ATOM feeds
feed_dir: categories
feed_dir: category
# Disqus recent comments
@ -227,4 +227,7 @@ disqus_commments:
api_key: 3P1ANNTDbeTRxVcFsOxguL4c4FKbaE23fXvp2n8SC2wZxqUJj4k9bdX6G9xWfQ6B
api_secret: Ci6363xAjmfNacfUouUHOuiVcb93iKx7dXwvrQJoD4mnrHdiCqwJk55kXJe68ffn
forum_name: dennogumi
limit: 5
limit: 5
gems:
- jekyll-sitemap

View file

@ -1,53 +0,0 @@
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
{% unless post.published == false %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
{% if post.sitemap.lastmod %}
<lastmod>{{ post.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{% elsif post.date %}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{% endif %}
{% if post.sitemap.changefreq %}
<changefreq>{{ post.sitemap.changefreq }}</changefreq>
{% else %}
<changefreq>monthly</changefreq>
{% endif %}
{% if post.sitemap.priority %}
<priority>{{ post.sitemap.priority }}</priority>
{% else %}
<priority>0.5</priority>
{% endif %}
</url>
{% endunless %}
{% endfor %}
{% for page in site.pages %}
{% unless page.sitemap.exclude == "yes" %}
<url>
<loc>{{ site.url }}{{ page.url | remove: "index.html" }}</loc>
{% if page.sitemap.lastmod %}
<lastmod>{{ page.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
{% elsif page.date %}
<lastmod>{{ page.date | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
{% endif %}
{% if page.sitemap.changefreq %}
<changefreq>{{ page.sitemap.changefreq }}</changefreq>
{% else %}
<changefreq>monthly</changefreq>
{% endif %}
{% if page.sitemap.priority %}
<priority>{{ page.sitemap.priority }}</priority>
{% else %}
<priority>0.3</priority>
{% endif %}
</url>
{% endunless %}
{% endfor %}
</urlset>