Added sitemap.xml
This commit is contained in:
parent
6db3f0bcca
commit
0340970f4e
|
@ -68,3 +68,4 @@ If you'd like me to let you know when I release a new theme, just [drop me your
|
||||||
- [SVG icons](https://github.com/neilorangepeel/Free-Social-Icons) by Neil Orange Peel
|
- [SVG icons](https://github.com/neilorangepeel/Free-Social-Icons) by Neil Orange Peel
|
||||||
- The team at [Jekyll](https://github.com/jekyll/jekyll)!
|
- The team at [Jekyll](https://github.com/jekyll/jekyll)!
|
||||||
- Code/design reviewers
|
- Code/design reviewers
|
||||||
|
- [Joel Glovier](http://joelglovier.com/writing/) for some of his great Jekyll articles—I used feed.xml and sitemap.xml
|
|
@ -8,6 +8,10 @@ name: Site Name
|
||||||
# A short bio or description
|
# A short bio or description
|
||||||
description: Your Site Description
|
description: Your Site Description
|
||||||
|
|
||||||
|
# Your actual website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
|
||||||
|
# Used for Sitemap.xml and your RSS feed
|
||||||
|
url:
|
||||||
|
|
||||||
# A URL pointing to your avatar or profile pic
|
# A URL pointing to your avatar or profile pic
|
||||||
# To use your Gravatar: (the one that GitHub uses for your profile pic)
|
# To use your Gravatar: (the one that GitHub uses for your profile pic)
|
||||||
# 1. Go to https://github.com/YOURUSERNAME/
|
# 1. Go to https://github.com/YOURUSERNAME/
|
||||||
|
@ -31,7 +35,7 @@ footer-links:
|
||||||
instagram:
|
instagram:
|
||||||
linkedin:
|
linkedin:
|
||||||
pinterest:
|
pinterest:
|
||||||
rss: # for rss, add the entire URL of our site, e.g. http://www.barryclark.co
|
rss: # just type anything here for a working RSS icon, make sure you set the "url" at the top of this file!
|
||||||
twitter: your-username
|
twitter: your-username
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
56
sitemap.xml
56
sitemap.xml
|
@ -1,52 +1,20 @@
|
||||||
---
|
---
|
||||||
layout: none
|
|
||||||
sitemap:
|
|
||||||
priority: 0.7
|
|
||||||
changefreq: monthly
|
|
||||||
lastmod: 2013-11-16T10:17:00-05:00
|
|
||||||
---
|
---
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<url>
|
{% for post in site.posts %}
|
||||||
<loc>{{ site.url }}/</loc>
|
|
||||||
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
|
|
||||||
<changefreq>weekly</changefreq>
|
|
||||||
<priority>1.0</priority>
|
|
||||||
</url>
|
|
||||||
{% for post in site.posts %}
|
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ site.url }}{{ post.url }}</loc>
|
<loc>{{ site.url }}{{ post.url | remove: 'index.html' }}</loc>
|
||||||
{% if post.lastmod == null %}
|
</url>
|
||||||
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
|
{% endfor %}
|
||||||
{% else %}
|
|
||||||
<lastmod>{{ post.lastmod | date_to_xmlschema }}</lastmod>
|
{% for page in site.pages %}
|
||||||
{% endif %}
|
{% if page.layout != nil %}
|
||||||
<changefreq>monthly</changefreq>
|
{% if page.layout != 'redirect' %}
|
||||||
<priority>0.5</priority>
|
<url>
|
||||||
|
<loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
|
||||||
</url>
|
</url>
|
||||||
{% endfor %}
|
|
||||||
{% for page in site.pages %}
|
|
||||||
<url>
|
|
||||||
<loc>{{ site.url }}{{ page.url }}</loc>
|
|
||||||
{% if page.sitemap.lastmod %}
|
|
||||||
<lastmod>{{ page.sitemap.lastmod | date: "%Y-%m-%d" }}</lastmod>
|
|
||||||
{% elsif page.lastmod %}
|
|
||||||
<lastmod>{{ page.lastmod | date: "%Y-%m-%d" }}</lastmod>
|
|
||||||
{% elsif page.date %}
|
|
||||||
<lastmod>{{ page.date | date: "%Y-%m-%d" }}</lastmod>
|
|
||||||
{% else %}
|
|
||||||
<lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.sitemap.changefreq %}
|
|
||||||
<changefreq>{{ page.sitemap.changefreq }}</changefreq>
|
|
||||||
{% else %}
|
|
||||||
<changefreq>monthly</changefreq>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.sitemap.priority %}
|
{% endfor %}
|
||||||
<priority>{{ page.sitemap.priority }}</priority>
|
</urlset>
|
||||||
{% else %}
|
|
||||||
<priority>0.3</priority>
|
|
||||||
{% endif %}
|
|
||||||
</url>
|
|
||||||
{% endfor %}
|
|
||||||
</urlset>
|
|
Loading…
Reference in a new issue