removing gh-pages branch and putting everything in master

This commit is contained in:
Tom Johnson
2015-04-20 12:10:04 -07:00
parent 8c1ccbcc57
commit f0b925337f
360 changed files with 119491 additions and 2 deletions

25
prince-file-list.txt Normal file
View File

@ -0,0 +1,25 @@
---
layout: none
---
{% include conditions.html %}
{% for entry in sidebar %}
{% for subcategory in entry.subcategories %}
{% if subcategory.audience contains buildAudience %}
{% for item in subcategory.items %}
{% if item.audience contains buildAudience and item.print == true %}
{{site.url}}{{item.url | prepend: site.baseurl}}index.html
{% for thirdlevel in item.thirdlevel %}
{% if thirdlevel.audience contains buildAudience %}
{% for deeplevel in thirdlevel.thirdlevelitems %}
{% if deeplevel.audience contains buildAudience and deeplevel.print == true %}
{{site.url}}{{item.url | prepend: site.baseurl}}index.html
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}