add docs/ to generate github page

This commit is contained in:
Mahmoud Zalt
2017-02-22 09:31:31 -05:00
parent 86031105be
commit 0ddafaf362
224 changed files with 40363 additions and 0 deletions

24
docs/sitemap.xml Executable file
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>