removing gh-pages branch and putting everything in master

This commit is contained in:
Tom Johnson
2015-04-20 12:10:04 -07:00
parent 8c1ccbcc57
commit f0b925337f
360 changed files with 119491 additions and 2 deletions

55
sitemap.xml Normal file
View File

@ -0,0 +1,55 @@
---
layout: null
search: exclude
---
<?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.last_updated %}
<last_updated>{{ post.sitemap.last_updated | date: "%Y-%m-%d" }}</last_updated>
{% elsif post.date %}
<last_updated>{{ post.date | date_to_xmlschema }}</last_updated>
{% else %}
<last_updated>{{ site.time | date_to_xmlschema }}</last_updated>
{% 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.last_updated %}
<last_updated>{{ page.sitemap.last_updated | date: "%Y-%m-%d" }}</last_updated>
{% elsif page.date %}
<last_updated>{{ page.date | date_to_xmlschema }}</last_updated>
{% else %}
<last_updated>{{ site.time | date_to_xmlschema }}</last_updated>
{% 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>