Rename 'hidden' node option to 'listed'

This commit is contained in:
Juno Takano 2026-06-03 14:35:50 -03:00
commit ab9b587018
7 changed files with 18 additions and 15 deletions

View file

@ -37,7 +37,7 @@
{% if loop.index > graph.meta.config.index_node_count %}
{% break %}
{% endif %}
{% if node.id != graph.root_node and not node.hidden and not node.redirect %}
{% if node.id != graph.root_node and node.listed and not node.redirect %}
<li><a href="/node/{{node.id}}">{{node.title}}</a></li>
{% endif %}
{% endfor %}