strapi/website/theme/toc.html
2016-04-04 21:51:00 +02:00

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 %}