2016-08-18 16:37:38 +00:00
|
|
|
{% for node in feature_list %}
|
2016-09-08 19:19:07 +00:00
|
|
|
{% if node.mod == mod and node.group == group and node.category == category %}
|
2016-08-18 16:37:38 +00:00
|
|
|
{% if page.url == node.url or (page.parent != null and node.short == page.parent) %}
|
|
|
|
<li class="active"><a href="{{ site.baseurl }}{{node.url}}" class="active">{{node.title}}</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li><a href="{{ site.baseurl }}{{node.url}}">{{node.title}}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% assign feature_list = nil %}
|
2016-09-08 19:19:07 +00:00
|
|
|
{% assign mod = nil %}
|
2016-08-18 16:37:38 +00:00
|
|
|
{% assign group = nil %}
|
|
|
|
{% assign category = nil %}
|