Update default.html

This commit is contained in:
Zachary Klosko 2020-05-18 11:00:44 -04:00
parent c9d72daa35
commit 700fce25a2
1 changed files with 2 additions and 2 deletions

View File

@ -41,13 +41,13 @@
<div>
{% for item in site.data.nav2.toc2 %}
<h3>{{ item.title }}</h3>
<i>{{ item.title }}</i>
{% if item.subfolderitems[0] %}
{% for entry in item.subfolderitems %}
<br><a href="{{ entry.url }}">{{ entry.page }}</a>
{% if entry.subsubfolderitems[0] %}
{% for subentry in entry.subsubfolderitems %}
&nbsp; <a href="{{ subentry.url }}">{{ subentry.page }}</a>
<br> &nbsp; <a href="{{ subentry.url }}">{{ subentry.page }}</a>
{% endfor %}
{% endif %}
{% endfor %}