ACE3/docs/_includes/feature_list

14 lines
575 B
Plaintext
Raw Normal View History

{% for node in feature_list %}
{% if node.mod == mod and node.group == group and node.category == category %}
{% 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 %}
{% assign mod = nil %}
{% assign group = nil %}
{% assign category = nil %}