Fixed code issue (#6919)

Merge pull request 6919
This commit is contained in:
Benjamin Høegh 2018-04-11 19:15:13 +02:00 committed by jekyllbot
parent 2765f0fcb9
commit 3cbfc48e63
1 changed files with 2 additions and 1 deletions

View File

@ -261,7 +261,7 @@ toc2:
{% if item.subfolderitems[0] %}
<ul>
{% for entry in item.subfolderitems %}
<li><a href="{{ entry.url }}">{{ entry.page }}</a></li>
<li><a href="{{ entry.url }}">{{ entry.page }}</a>
{% if entry.subsubfolderitems[0] %}
<ul>
{% for subentry in entry.subsubfolderitems %}
@ -269,6 +269,7 @@ toc2:
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}