1
0

Adding docs folder, with skeleton jekyll based site

- Uses https://github.com/tomjohnson1492/documentation-theme-jekyll
 - Have filler pages
This commit is contained in:
Vinoth Chandar
2016-12-30 11:05:22 -08:00
parent 84e0a7f68a
commit 2bf0db14c6
115 changed files with 14542 additions and 0 deletions

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