forked from peridaf/pibookgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
22 lines (21 loc) · 1.24 KB
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
permalink: /sitemap.xml
title: 'Site map for robots'
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
{% comment %}
See http://www.sitemaps.org/protocol.html for argument meanings and values.
Gem jekyll-sitemap only lists urls with no control over priority and changefreq, hence using a custom one.
Add your custom collections like this:
{% include sitemap_collection.xml links=site.projects name="Projects" priority=0.7 changefreq='monthly' %}
{% endcomment %}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% include sitemap_collection.xml links=site.pages name="Pages" priority=0.7 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.posts name="Posts" priority=0.7 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.quotes name="Quotes" priority=0.3 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.gallery name="Gallery" priority=0.2 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.case-study name="Case Study" priority=0.2 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.remix name="Remix" priority=0.4 changefreq='monthly' %}
{% include sitemap_collection.xml links=site.making name="Make" priority=0.5 changefreq='monthly' %}
</urlset>