blob: 2228c7e36761c14ce99bc7a484abe25b37511c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% for entry in include.entries %}
{% if entry.url != null %}
<li>
<a class="{% if include.my_entry == entry.url %}this-page{% endif %}" href="{{ include.version_root }}{{ entry.url }}">
{{ entry.name }}
</a>
</li>
{% endif %}
{% if entry.children %}
{% include toc_recursive_dropdown.html entries=entry.children my_entry=include.my_entry version_root=include.version_root %}
{% endif %}
{% endfor %}
|