aboutsummaryrefslogtreecommitdiffstats
path: root/site/_includes/toc_recursive_dropdown.html
blob: b0983e1c87ace27d4a8aacc704ab2d4c9e88ad15 (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=version_root %}
{% endif %}
{% endfor %}