mirror of
https://github.com/strapi/strapi.git
synced 2025-08-06 07:50:02 +00:00
13 lines
412 B
HTML
Executable File
13 lines
412 B
HTML
Executable File
{% if nav_item.children %}
|
|
<ul class="subnav">
|
|
<li><span>{{ nav_item.title }}</span></li>
|
|
{% for nav_item in nav_item.children %}
|
|
{% include "toc.html" %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<li class="toctree-l1 {% if nav_item.active %}current{% endif %}">
|
|
<a class="{% if nav_item.active%}current{%endif%}" href="{{ nav_item.url }}index.html">{{ nav_item.title }}</a>
|
|
</li>
|
|
{% endif %}
|