mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
12 lines
488 B
Plaintext
12 lines
488 B
Plaintext
{% 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 %}
|