committing new version of jekyll doc theme -- 5.0, with some refinements to come with the documentation

This commit is contained in:
tomjohnson1492
2016-03-19 00:13:09 -07:00
parent e267cce513
commit 7a869d7cd4
206 changed files with 16935 additions and 37629 deletions

View File

@ -1,55 +1,24 @@
---
layout: null
layout: none
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 %}
{% unless post.search == "exclude" %}
<url>
<loc>{{site.url}}{{site.baseurl}}{{ post.url | remove: 'index.html' }}</loc>
</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 %}
{% unless page.search == "exclude" %}
<url>
<loc>{{site.url}}{{site.baseurl}}{{ page.url | remove: 'index.html' }}</loc>
</url>
{% endunless %}
{% endfor %}
</urlset>