Made it so index.html in permalink is now an option in the config file. Made lots of other general improvements to the customjavascript.js file and various other parts of theme.
This commit is contained in:
@ -9,12 +9,12 @@ search: false
|
||||
{% 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
|
||||
{{site.url}}{{item.url | prepend: site.baseurl}}{{site.suffix}}
|
||||
{% 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
|
||||
{{site.url}}{{item.url | prepend: site.baseurl}}{{site.suffix}}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user