Jekyll Initial Commit

This commit is contained in:
David Erwin
2017-05-24 16:48:00 -04:00
parent a1a78334ea
commit 69b19d2c91
110 changed files with 13644 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
---
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.search == "exclude" %}
<url>
<loc>{{site.url}}{{post.url}}</loc>
</url>
{% endunless %}
{% endfor %}
{% for page in site.pages %}
{% unless page.search == "exclude" %}
<url>
<loc>{{site.url}}{{ page.url}}</loc>
</url>
{% endunless %}
{% endfor %}
</urlset>