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

@ -0,0 +1,28 @@
---
layout: none
search: exclude
---
{% include custom/sidebarconfigs.html %}
{% for entry in sidebar_pdf %}
{% for subcategory in entry.subcategories %}
{% if subcategory.output contains "pdf" %}
{% for item in subcategory.items %}
{% if item.output contains "pdf" %}
{{site.url}}{{site.baseurl}}{{item.url }}
{% for thirdlevel in item.thirdlevel %}
{% if thirdlevel.output contains "pdf" %}
{% for deeplevel in thirdlevel.thirdlevelitems %}
{% if deeplevel.output contains "pdf" %}
{{site.url}}{{site.baseurl}}{{deeplevel.url}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}