mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c29ae977fc
* Documentation - Merge ACEX * Only show ACEX prefix note on framework pages * Documentation - Use ACEX prefix in Fortify events See #8553 * Cleanup acex from config.yml * English is weird Co-authored-by: PabstMirror <pabstmirror@gmail.com>
13 lines
532 B
Plaintext
13 lines
532 B
Plaintext
{% for node in feature_list %}
|
|
{% if 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 group = nil %}
|
|
{% assign category = nil %}
|