Merge 1c2538769eccef25cf19ad6598dd1f4c76da5e7b into 56c0c566dcdde20bd14987c621e4ffda17ceb53d

This commit is contained in:
Mark Steve Samson 2017-04-18 06:13:57 +00:00 committed by GitHub
commit 7a0b8f3e6a

View File

@ -70,11 +70,12 @@ the recursive Jinja loop system comes really in.
<ul class="tree-nav">
{% set root = site.get('/') %}
{% for child in root.children recursive %}
<li{% if this._path == child._path %} class="active"{% endif
%}><a href="{{ child|url }}">{{ child.title }}</a>
<li{% if this._path == child._path %} class="active"{% endif %}>
<a href="{{ child|url }}">{{ child.title }}</a>
{% if this.is_child_of(child) %}
<ul>{{ loop(child.children) }}</ul>
{% endif %}
</li>
{% endfor %}
</ul>
```