mirror of
https://github.com/strapi/strapi.git
synced 2025-08-07 16:29:18 +00:00
13 lines
412 B
HTML
13 lines
412 B
HTML
![]() |
{% 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 %}
|