ACE3/docs/_includes/pages_list

12 lines
488 B
Plaintext
Raw Normal View History

{% for node in pages_list %}
{% if group == null or group == node.group %}
{% 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 pages_list = nil %}
{% assign group = nil %}